|   | ConfigurationFrameGetConfigurationCacheFileName Method | 
        
        
            Gets the file name with path of the specified configurationName.
            
        
        Namespace: GSF.PhasorProtocols.AnonymousAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic static string GetConfigurationCacheFileName(
	string configurationName,
	string extension = "configuration.xml",
	string basePath = null
)
Public Shared Function GetConfigurationCacheFileName ( 
	configurationName As String,
	Optional extension As String = "configuration.xml",
	Optional basePath As String = Nothing
) As String
public:
static String^ GetConfigurationCacheFileName(
	String^ configurationName, 
	String^ extension = L"configuration.xml", 
	String^ basePath = nullptr
)
static member GetConfigurationCacheFileName : 
        configurationName : string * 
        ?extension : string * 
        ?basePath : string 
(* Defaults:
        let _extension = defaultArg extension "configuration.xml"
        let _basePath = defaultArg basePath null
*)
-> string GSF.PhasorProtocols.Anonymous.ConfigurationFrame.GetConfigurationCacheFileName = function(configurationName, extension, basePath);
Parameters
- configurationName  String
- Name of the configuration to get file name for.
- extension  String  (Optional)
- Extension of the configuration file.
- basePath  String  (Optional)
- Base path of the configuration file. Set to null to use default ConfigurationCachePath.
Return Value
StringFile name with path of the specified 
configurationName.
 See Also
See Also