Class RequestArguments
Represents parameters to pass to Gremlin Server.
Inheritance
System.Object
RequestArguments
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.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Gremlin.Net.Messages
Assembly:Gremlin.Net.dll
Syntax
public abstract class RequestArguments
Properties
| Improve this Doc View SourceBatchSize
Gets or set the number of iterations each ResponseMessage should contain.
Declaration
[JsonProperty(PropertyName = "batchSize", NullValueHandling = NullValueHandling.Ignore)]
public int ? BatchSize { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | When the result is an iterator this value defines the number of iterations each ResponseMessage should contain - overrides the resultIterationBatchSize server setting. |