Megosztás a következőn keresztül:


LogsUploadFailedEventArgs Class

Definition

The event argument models configured with the EventHandler to upload logs to Azure Monitor.

public class LogsUploadFailedEventArgs : Azure.SyncAsyncEventArgs
type LogsUploadFailedEventArgs = class
    inherit SyncAsyncEventArgs
Public Class LogsUploadFailedEventArgs
Inherits SyncAsyncEventArgs
Inheritance
LogsUploadFailedEventArgs

Constructors

LogsUploadFailedEventArgs(IEnumerable<Object>, Exception, Boolean, CancellationToken)

Initializes a new instance of the LogsUploadFailedEventArgs class.

Properties

CancellationToken

Gets a cancellation token related to the original operation that raised the event. It's important for your handler to pass this token along to any asynchronous or long-running synchronous operations that take a token so cancellation (via something like

new CancellationTokenSource(TimeSpan.FromSeconds(10)).Token

for example) will correctly propagate.

(Inherited from SyncAsyncEventArgs)
Exception

The exception from the batch that failed to upload.

FailedLogs

The list of logs in the batch that failed to upload.

IsRunningSynchronously

Gets a value indicating whether the event handler was invoked synchronously or asynchronously. Please see SyncAsyncEventHandler<T> for more details.

(Inherited from SyncAsyncEventArgs)

Applies to