Share via


Message.Properties Property

 

Gets the application specific message properties.

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

Syntax

public IDictionary<string, object> Properties { get; private set; }
public:
property IDictionary<String^, Object^>^ Properties {
    IDictionary<String^, Object^>^ get();
    private: void set(IDictionary<String^, Object^>^ value);
}
member Properties : IDictionary<string, Object> with get, private set
Public Property Properties As IDictionary(Of String, Object)
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Generic.IDictionary<String, Object>

The application specific message properties.

See Also

Message Class
Microsoft.WindowsAzure.Messaging Namespace

Return to top