Class ResponseMessage<T>
The message returned from the server.
Inheritance
System.Object
ResponseMessage<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Gremlin.Net.Driver.Messages
Assembly: cs.temp.dll.dll
Syntax
public class ResponseMessage<T>
Type Parameters
Name | Description |
---|---|
T | The type of the data returned. |
Properties
RequestId
Gets or sets the identifier of the RequestMessage that generated this ResponseMessage<T>.
Declaration
public Guid? RequestId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Result
Gets or sets the result with its data and optional meta information.
Declaration
public ResponseResult<T> Result { get; set; }
Property Value
Type | Description |
---|---|
ResponseResult<T> |
Status
Gets or sets status information about this ResponseMessage<T>.
Declaration
public ResponseStatus Status { get; set; }
Property Value
Type | Description |
---|---|
ResponseStatus |