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

Size() public method

Return the size of this structure.
public Size ( ) : int
return int
        public int Size()
        {
            int size = sizeof(byte) * 5;
            if (this.CollapseState != null)
            {
                size += this.CollapseState.Length;
            }

            return size;
        }
    }
RopSetCollapseStateRequest