Constants used for properties of type ShardIteratorType.
Inheritance: ConstantClass
コード例 #1
0
 public GetShardIteratorRequest(
     string streamName,
     string shardId,
     ShardIteratorType type,
     string?startingSequenceNumber = null)
 {
     StreamName             = streamName ?? throw new ArgumentNullException(streamName);
     ShardId                = shardId ?? throw new ArgumentNullException(shardId);
     ShardIteratorType      = type;
     StartingSequenceNumber = startingSequenceNumber;
 }