Elastacloud.AzureManagement.Fluent.Types.CscfgFile.GetInstance C# (CSharp) Method

GetInstance() public static method

Singleton for the file
public static GetInstance ( string name ) : ConfigurationFile
name string
return ConfigurationFile
        public static ConfigurationFile GetInstance(string name)
        {
            if (Instance == null)
                return (Instance = new CscfgFile(name));
            return Instance;
        }