Freigeben über


FileUploadNotificationProcessorClient.ErrorProcessor Eigenschaft

Definition

Der Rückruf, der ausgeführt werden soll, wenn die Verbindung unterbrochen wird.

public Action<Microsoft.Azure.Devices.ErrorContext> ErrorProcessor { get; set; }
member this.ErrorProcessor : Action<Microsoft.Azure.Devices.ErrorContext> with get, set
Public Property ErrorProcessor As Action(Of ErrorContext)

Eigenschaftswert

Beispiele

serviceClient.FileUploadNotificationProcessor.ErrorProcessor = OnConnectionLost; serviceClient.FileUploadNotificationProcessor.OpenAsync();

//...

public void OnConnectionLost(ErrorContext errorContext) { // Add reconnection logic as needed Console.WriteLine("File upload notification processor connection lost") }

Gilt für: