Click or drag to resize

RequestMessage Class

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "T:JsonRpc.Messages.RequestMessage"]

Inheritance Hierarchy

Namespace:  JsonRpc.Messages
Assembly:  JsonRpc.Commons (in JsonRpc.Commons.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntax
public sealed class RequestMessage : Message

The RequestMessage type exposes the following members.

Constructors
  NameDescription
Public methodRequestMessage
Initializes a new instance of the RequestMessage class
Public methodRequestMessage(String)
Initializes a new instance of the RequestMessage class
Public methodRequestMessage(MessageId)
Initializes a new instance of the RequestMessage class
Public methodRequestMessage(String, JToken)
Initializes a new instance of the RequestMessage class
Public methodRequestMessage(MessageId, String)
Initializes a new instance of the RequestMessage class
Public methodRequestMessage(MessageId, String, JToken)
Initializes a new instance of the RequestMessage class
Top
Properties
  NameDescription
Public propertyId
A unique ID given to the request/response session. The request creator is responsible for assigning this value.
Public propertyIsNotification
Determines whether this Request object is a Notification.
Public propertyMethod
The method to invoke on the receiver.
Public propertyParameters
A JObject representing parameters for the method.
Public propertyVersion
The version of the JSON-RPC specification in use.
(Inherited from Message.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Gets the JSON representation of the message.
(Inherited from Message.)
Public methodWriteJson
Writes the JSON RPC string into specified TextWriter.
(Inherited from Message.)
Top
See Also