MessageReceivedEventArgs Members
Include Protected Members
Include Inherited Members
Represents the argument for relay events.
The MessageReceivedEventArgs type exposes the following members.
Constructors
Name | Description | |
---|---|---|
MessageReceivedEventArgs | Initializes the new instance of the class. |
Top
Properties
Name | Description | |
---|---|---|
Connection | Gets the connection associated with this message. This can be null. | |
ContentType | Gets the MIME type of the relay message. Can be null if the message has no content type. | |
DisableAutomaticResponse | Gets or sets whether the response is handled. If true, the application is responsible for sending the response. | |
HasTextBody | Indicates whether the TextBody field has been filled out. | |
MessageType | Gets the message type of the body. | |
Participant | Gets the participant that generated this message. | |
RequestData | Gets the SIP request data for the event. This can be null in some instances. (inherited from SipRequestReceivedEventArgs) | |
TextBody | Returns the body in the form of a string if the content was easily convertable. |
Top
Methods
Name | Description | |
---|---|---|
Equals | (inherited from Object) | |
Finalize | (inherited from Object) | |
GetBody | Retrieves the body of the message. | |
GetHashCode | (inherited from Object) | |
GetType | (inherited from Object) | |
MemberwiseClone | (inherited from Object) | |
SendResponse(Int32) | Sends a response to this message with specified response code. This method is optional for message received events. If the application does not call SendResponse in MessageReceived handlers, the platform will automatically respond with ResponseCode.Succeeded. | |
SendResponse(Int32, ContentType, String, IEnumerable<SignalingHeader>) | Sends response to this message with a specified body and specified headers. This method is optional for message received events. If the application does not call SendResponse in MessageReceived handlers, the platform will automatically respond with ResponseCode.Succeeded. | |
ToString | (inherited from Object) |
Top