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

Size() public method

Return the size of this structure.
public Size ( ) : int
return int
        public int Size()
        {
            // 9 indicates sizeof(byte) * 7 + sizeof(UInt16)
            int size = sizeof(byte) * 9;
            for (int i = 0; i < this.ExcludedTagCount; i++)
            {
                size += this.ExcludedTags[i].Size();
            }

            return size;
        }
    }
RopCopyToRequest