Class ResponseResult<T>
Represents the result as a response to a RequestMessage sent as part of a ResponseMessage<T> by the server.
Inheritance
System.Object
ResponseResult<T>
Implements
System.IEquatable<ResponseResult<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 ResponseResult<T> : IEquatable<ResponseResult<T>>
Type Parameters
Name | Description |
---|---|
T | The type of the Data. |
Constructors
ResponseResult(T, Dictionary<String, Object>)
Initializes a new instance of the ResponseResult<T> record.
Declaration
public ResponseResult(T data, Dictionary<string, object> meta = null)
Parameters
Type | Name | Description |
---|---|---|
T | data | The data of this result. |
System.Collections.Generic.Dictionary<System.String, System.Object> | meta | The (optional) meta data of this result. |
Properties
Data
Gets the data of this result.
Declaration
public T Data { get; }
Property Value
Type | Description |
---|---|
T |
Meta
Gets meta data of this result.
Declaration
public Dictionary<string, object> Meta { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.Object> |
Implements
System.IEquatable<T>