ConfigurationFrameGetConfigurationCacheFileName Method
Generates the full file name, including the path, for a configuration cache file.
Namespace: Gemstone.PhasorProtocols.AnonymousAssembly: Gemstone.PhasorProtocols (in Gemstone.PhasorProtocols.dll) Version: 1.0.182 -- Release Build+e7ca098e90393a2d25b77650455075d619d99c23
public 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
)
Gemstone.PhasorProtocols.Anonymous.ConfigurationFrame.GetConfigurationCacheFileName = function(configurationName, extension, basePath);
- configurationName String
- The name of the configuration for which to generate the file name.
- extension String (Optional)
- The file extension to use for the configuration cache file. Defaults to "configuration.xml".
- basePath String (Optional)
- The base path where the configuration cache file will be located. If not specified, a default path is used.
String
A string representing the full file name, including the path, for the specified configuration cache file.
Invalid characters in the configurationName or extension are replaced
to ensure the resulting file name is valid.