Redigera

Dela via


SiloHandle.StopSiloAsync Method

Definition

Overloads

StopSiloAsync(Boolean)

Stop the remote silo

StopSiloAsync(CancellationToken)

Stop the remote silo. This method cannot be use with AppDomain

StopSiloAsync(Boolean)

Source:
SiloHandle.cs

Stop the remote silo

public abstract System.Threading.Tasks.Task StopSiloAsync (bool stopGracefully);
abstract member StopSiloAsync : bool -> System.Threading.Tasks.Task
Public MustOverride Function StopSiloAsync (stopGracefully As Boolean) As Task

Parameters

stopGracefully
Boolean

Specifies whether the silo should be stopped gracefully or abruptly.

Returns

Applies to

StopSiloAsync(CancellationToken)

Source:
SiloHandle.cs

Stop the remote silo. This method cannot be use with AppDomain

public abstract System.Threading.Tasks.Task StopSiloAsync (System.Threading.CancellationToken ct);
abstract member StopSiloAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public MustOverride Function StopSiloAsync (ct As CancellationToken) As Task

Parameters

ct
CancellationToken

Specifies the cancellation token to use for the shutdown sequence

Returns

Applies to