Ejemplo n.º 1
0
        /// <summary>Initialization steps performed after the module is loaded.</summary>

        public void Init()
        {
            OnModuleLoad?.Invoke(ResourceId, Name, (step) => { _pipeline.Prepend(step); }, (step) => { _pipeline.Append(step); });
            OnModuleLoad?.Invoke(ResourceId, Name, (step) => { _pipelineWithProxy.Prepend(step); }, (step) => { _pipelineWithProxy.Append(step); });
            CustomInit();
        }
Ejemplo n.º 2
0
 /// <summary>Creates an instance of the HttpPipeline for each call.</summary>
 /// <param name="invocationInfo">The <see cref="System.Management.Automation.InvocationInfo" /> from the cmdlet</param>
 /// <param name="correlationId">the cmdlet's correlation id.</param>
 /// <param name="processRecordId">the cmdlet's process record correlation id.</param>
 /// <returns>An instance of Microsoft.Azure.AzConfig.Runtime.HttpPipeline for the remote call.</returns>
 public Microsoft.Azure.AzConfig.Runtime.HttpPipeline CreatePipeline(System.Management.Automation.InvocationInfo invocationInfo, string correlationId, string processRecordId)
 {
     Microsoft.Azure.AzConfig.Runtime.HttpPipeline pipeline = null;
     BeforeCreatePipeline(invocationInfo, ref pipeline);
     pipeline = (pipeline ?? (_handler.UseProxy ? _pipelineWithProxy : _pipeline)).Clone();
     AfterCreatePipeline(invocationInfo, ref pipeline);
     OnNewRequest?.Invoke(invocationInfo, correlationId, processRecordId, (step) => { pipeline.Prepend(step); }, (step) => { pipeline.Append(step); });
     return(pipeline);
 }