2 implementations of WriteCompleted
System.Configuration.ConfigurationManager (2)
System\Configuration\Internal\DelegatingConfigHost.cs (1)
104public virtual void WriteCompleted(string streamName, bool success, object writeContext)
System\Configuration\Internal\InternalConfigHost.cs (1)
79void IInternalConfigHost.WriteCompleted(string streamName, bool success, object writeContext)
7 references to WriteCompleted
System.Configuration.ConfigurationManager (7)
System\Configuration\ClientSettingsStore.cs (1)
322Host.WriteCompleted(streamName, success, writeContext);
System\Configuration\Internal\DelegatingConfigHost.cs (1)
106Host.WriteCompleted(streamName, success, writeContext);
System\Configuration\MgmtConfigurationRecord.cs (4)
1087if (streamOpened) Host.WriteCompleted(ConfigStreamInfo.StreamName, false, writeContext); 1100Host.WriteCompleted(ConfigStreamInfo.StreamName, true, writeContext); 3041if (streamOpened) Host.WriteCompleted(configSourceStreamName, false, writeContext); 3052Host.WriteCompleted(configSourceStreamName, true, writeContext);
System\Configuration\UpdateConfigHost.cs (1)
109Host.WriteCompleted(streamName, success, writeContext);