Interface IRetryEvent
Event containing information about the happened retry
Namespace: PnP.Core.Services
Assembly: PnP.Core.dll
Syntax
public interface IRetryEvent
Properties
Exception
SocketException that triggered the retry
Declaration
Exception Exception { get; }
Property Value
Exception
|
HttpStatusCode
Http status code for the retried request
Declaration
int HttpStatusCode { get; }
Property Value
System.Int32
|
Properties
Event property bag
Declaration
IDictionary<string, object> Properties { get; }
Property Value
IDictionary<System.String, System.Object>
|
Request
Request that was retried
Declaration
Uri Request { get; }
Property Value
Uri
|
WaitTime
Wait before the next try in seconds
Declaration
int WaitTime { get; }
Property Value
System.Int32
|