Microsoft.Protocols.TestSuites.SharedAdapter.PutChangesCellSubRequest.PutChangesCellSubRequest C# (CSharp) Method

PutChangesCellSubRequest() public method

Initializes a new instance of the PutChangesCellSubRequest class
public PutChangesCellSubRequest ( ulong subRequestID, ExGuid storageIndexExGuid ) : System
subRequestID ulong Specify the sub request id
storageIndexExGuid ExGuid Specify the storage index ExGuid.
return System
        public PutChangesCellSubRequest(ulong subRequestID, ExGuid storageIndexExGuid)
        {
            this.RequestID = subRequestID;
            this.RequestType = Convert.ToUInt64(RequestTypes.PutChanges);
            this.StorageIndexExtendedGUID = storageIndexExGuid;
            this.ExpectedStorageIndexExtendedGUID = new ExGuid();
            this.ImplyNullExpectedIfNoMapping = 0;
            this.Partial = 0;
            this.PartialLast = 0;
            this.FavorCoherencyFailureOverNotFound = 1;
            this.AbortRemainingPutChangesOnFailure = 0;
            this.MultiRequestPutHint = 0;
            this.ReturnCompleteKnowledgeIfPossible = 1;
            this.LastWriterWinsOnNextChange = 0;

            this.IsAdditionalFlagsUsed = false;
            this.IsLockIdUsed = false;
        }