IInternalConfigHost.WriteCompleted Method

Definition

Indicates that all writing to the configuration file has completed and specifies whether permissions should be asserted.

Overloads

WriteCompleted(String, Boolean, Object)

Indicates that all writing to the configuration file has completed.

WriteCompleted(String, Boolean, Object, Boolean)

Indicates that all writing to the configuration file has completed and specifies whether permissions should be asserted.

WriteCompleted(String, Boolean, Object)

Source:
IInternalConfigHost.cs
Source:
IInternalConfigHost.cs
Source:
IInternalConfigHost.cs

Indicates that all writing to the configuration file has completed.

public:
 void WriteCompleted(System::String ^ streamName, bool success, System::Object ^ writeContext);
public void WriteCompleted (string streamName, bool success, object writeContext);
abstract member WriteCompleted : string * bool * obj -> unit
Public Sub WriteCompleted (streamName As String, success As Boolean, writeContext As Object)

Parameters

streamName
String

A string representing the name of the Stream object performing I/O tasks on the configuration file.

success
Boolean

true if the write to the configuration file was completed successfully; otherwise, false.

writeContext
Object

The write context of the Stream object performing I/O tasks on the configuration file.

Applies to

WriteCompleted(String, Boolean, Object, Boolean)

Source:
IInternalConfigHost.cs
Source:
IInternalConfigHost.cs
Source:
IInternalConfigHost.cs

Indicates that all writing to the configuration file has completed and specifies whether permissions should be asserted.

public:
 void WriteCompleted(System::String ^ streamName, bool success, System::Object ^ writeContext, bool assertPermissions);
public void WriteCompleted (string streamName, bool success, object writeContext, bool assertPermissions);
abstract member WriteCompleted : string * bool * obj * bool -> unit
Public Sub WriteCompleted (streamName As String, success As Boolean, writeContext As Object, assertPermissions As Boolean)

Parameters

streamName
String

A string representing the name of the Stream object performing I/O tasks on the configuration file.

success
Boolean

true to indicate the write was completed successfully; otherwise, false.

writeContext
Object

The write context of the Stream object performing I/O tasks on the configuration file.

assertPermissions
Boolean

true to assert permissions; otherwise, false.

Applies to