Queue.SendAsync<T> Method (T)

 

Sends data asynchronously to a connected object with the specified message.

Namespace:   Microsoft.WindowsAzure.Messaging
Assembly:  Microsoft.WindowsAzure.Messaging.Managed (in Microsoft.WindowsAzure.Messaging.Managed.dll)

Syntax

public Task SendAsync<T>(
    T message
)
public:
generic<typename T>
Task^ SendAsync(
    T message
)
member SendAsync<'T> : 
        message:'T -> Task
Public Function SendAsync(Of T) (
    message As T
) As Task

Parameters

  • message
    Type: T

    The asynchronous message.

Return Value

Type: System.Threading.Tasks.Task

The asynchronous data.

Type Parameters

  • T
    The object type.

See Also

SendAsync Overload
Queue Class
Microsoft.WindowsAzure.Messaging Namespace

Return to top