You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// this will be called once when the module starts up
51
+
// the common module can prepend or append steps to the pipeline at this point.
52
+
prependStep(UniqueId.Instance.SendAsync);
53
+
54
+
// appendStep( RetryHandler.SendAsync );
55
+
}
56
+
57
+
/// <summary>
58
+
/// The cmdlet will call this for every event during the pipeline.
59
+
/// </summary>
60
+
/// <param name="id">a <c>string</c> containing the name of the event being raised (well-known events are in <see cref="Microsoft.Azure.Commands.Common.Events"/></param>
61
+
/// <param name="cancellationToken">a <c>CancellationToken</c> indicating if this request is being cancelled.</param>
62
+
/// <param name="getEventData">a delegate to call to get the event data for this event</param>
63
+
/// <param name="signal">a delegate to signal an event from the handler to the cmdlet.</param>
64
+
/// <param name="invocationInfo">The <see cref="System.Management.Automation.InvocationInfo" /> from the cmdlet</param>
65
+
/// <param name="parameterSetName">The <see cref="string" /> containing the name of the parameter set for this invocation (if available></param>
66
+
/// <param name="correlationId">The <see cref="string" /> containing the correlation id for the cmdlet (if available)</param>
67
+
/// <param name="processRecordId">The <see cref="string" /> containing the correlation id for the individual process record. (if available)</param>
68
+
/// <param name="exception">The <see cref="System.Exception" /> that is being thrown (if available)</param>
0 commit comments