Implemented interface member:
method
IsFile
System.Configuration.Internal.IInternalConfigHost.IsFile(System.String)
1 override of IsFile
System.Configuration.ConfigurationManager (1)
System\Configuration\UpdateConfigHost.cs (1)
125public override bool IsFile(string streamName)
7 references to IsFile
System.Configuration.ConfigurationManager (7)
System\Configuration\ClientConfigurationHost.cs (7)
75public override bool IsAppConfigHttp => !IsFile(GetStreamName(ExeConfigPath)); 258if (IsFile(streamName)) 273return IsFile(streamName) ? Host.GetStreamVersion(streamName) : s_version; 281if (IsFile(streamName)) return Host.OpenStreamForRead(streamName); 313if (!IsFile(streamName)) throw ExceptionUtil.UnexpectedError($"ClientConfigurationHost::OpenStreamForWrite '{streamName}' '{templateStreamName}'"); 321if (!IsFile(streamName)) throw ExceptionUtil.UnexpectedError("ClientConfigurationHost::Delete"); 379return !IsFile(streamName);