 | RequestMessageIsNotification Property |
[This is preliminary documentation and is subject to change.]
Determines whether this Request object is a Notification.
Namespace:
JsonRpc.Messages
Assembly:
JsonRpc.Commons (in JsonRpc.Commons.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntaxpublic bool IsNotification { get; }
Public ReadOnly Property IsNotification As Boolean
Get
Dim instance As RequestMessage
Dim value As Boolean
value = instance.IsNotification
public:
property bool IsNotification {
bool get ();
}
member IsNotification : bool with get
Property Value
Type:
Boolean
Remarks
A Notification is a Request object without an "id" member. A Request object that is a Notification
signifies the Client's lack of interest in the corresponding Response object, and as such no Response
object needs to be returned to the client. The Server MUST NOT reply to a Notification, including
those that are within a batch request.
See Also