Class SessionRequestInfo
Class used to hold data that is passed to implementations of IRequestTracker. Either Statement or PrepareRequest will be set, never both.
Inherited Members
Namespace: Cassandra
Assembly: Cassandra.dll
Syntax
public sealed class SessionRequestInfo
Properties
Items
Declaration
public ConcurrentDictionary<string, object> Items { get; }
Property Value
Type | Description |
---|---|
ConcurrentDictionary<string, object> |
PrepareRequest
If this request is a PREPARE request, then this property is set.
Declaration
public PrepareRequest PrepareRequest { get; }
Property Value
Type | Description |
---|---|
PrepareRequest |
SessionKeyspace
Returns the session's current keyspace (if it was set).
Declaration
public string SessionKeyspace { get; }
Property Value
Type | Description |
---|---|
string |
Statement
If this request is associated with a IStatement object, then this property is set.
Declaration
public IStatement Statement { get; }
Property Value
Type | Description |
---|---|
IStatement |