Show / Hide Table of Contents

    Class Message

    Supplementary contextual messages during a rollout.

    Inheritance
    Object
    Message
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.DeploymentManager.dll
    Syntax
    public class Message

    Constructors

    Message()

    Initializes a new instance of the Message class.

    Declaration
    public Message ();

    Message(Nullable<DateTime>, String)

    Initializes a new instance of the Message class.

    Declaration
    public Message (Nullable<DateTime> timeStamp = null, string messageProperty = null);
    Parameters
    Nullable<DateTime> timeStamp

    Time in UTC this message was provided.

    String messageProperty

    The actual message text.

    Properties

    MessageProperty

    Gets the actual message text.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="message")]
    public string MessageProperty { get; }
    Property Value
    String

    TimeStamp

    Gets time in UTC this message was provided.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="timeStamp")]
    public Nullable<DateTime> TimeStamp { get; }
    Property Value
    Nullable<DateTime>

    Back to top Azure SDK for Net