Microsoft.Protocols.TestSuites.Common.RopSynchronizationImportMessageMoveRequest.Size C# (CSharp) Method

Size() public method

Return the size of RopSynchronizationImportMessageMove request buffer structure.
public Size ( ) : int
return int
        public int Size()
        {
            // 23 indicates sizeof (byte) * 3 + sizeof (UInt32)*5 
            int size = sizeof(byte) * 23;
            size += (int)this.SourceFolderIdSize;
            size += (int)this.SourceMessageIdSize;
            size += (int)this.PredecessorChangeListSize;
            size += (int)this.DestinationMessageIdSize;
            size += (int)this.ChangeNumberSize;
            return size;
        }
    }
RopSynchronizationImportMessageMoveRequest