DelegatingConfigHost.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)

This API supports the product infrastructure and is not intended to be used directly from your code.

Indicates that all writing to the configuration file has completed.

WriteCompleted(String, Boolean, Object, Boolean)

This API supports the product infrastructure and is not intended to be used directly from your code.

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

WriteCompleted(String, Boolean, Object)

Source:
DelegatingConfigHost.cs
Source:
DelegatingConfigHost.cs
Source:
DelegatingConfigHost.cs
Source:
DelegatingConfigHost.cs

Indicates that all writing to the configuration file has completed.

This API supports the product infrastructure and is not intended to be used directly from your code.

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

Parameters

streamName
String

The name of a Stream object performing I/O tasks on a configuration file.

success
Boolean

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

writeContext
Object

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

Implements

Applies to

WriteCompleted(String, Boolean, Object, Boolean)

Source:
DelegatingConfigHost.cs
Source:
DelegatingConfigHost.cs
Source:
DelegatingConfigHost.cs
Source:
DelegatingConfigHost.cs

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

This API supports the product infrastructure and is not intended to be used directly from your code.

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

Parameters

streamName
String

The name of a Stream object performing I/O tasks on a configuration file.

success
Boolean

true to indicate that writing 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.

Implements

Applies to