CloudExtensions.GetHttpPipeline<T> Method (ServiceClient<T>)

 

Gets the HTTP pipeline for the specified service client.

Namespace:   Microsoft.WindowsAzure.Common.Internals
Assembly:  Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)

Syntax

public static IEnumerable<HttpMessageHandler> GetHttpPipeline<T>(
    this ServiceClient<T> client
)
where T : ServiceClient<T>
public:
generic<typename T>
where T : ServiceClient<T>
[ExtensionAttribute]
static IEnumerable<HttpMessageHandler^>^ GetHttpPipeline(
    ServiceClient<T>^ client
)
static member GetHttpPipeline<'T when 'T : ServiceClient<'T>> : 
        client:ServiceClient<'T> -> IEnumerable<HttpMessageHandler>
<ExtensionAttribute>
Public Shared Function GetHttpPipeline(Of T As ServiceClient(Of T)) (
    client As ServiceClient(Of T)
) As IEnumerable(Of HttpMessageHandler)

Parameters

Return Value

Type: System.Collections.Generic.IEnumerable<HttpMessageHandler>

The HTTP pipeline.

Type Parameters

  • T
    The type of service client.

See Also

GetHttpPipeline Overload
CloudExtensions Class
Microsoft.WindowsAzure.Common.Internals Namespace

Return to top