Microsoft.Protocols.TestSuites.Common.RopLogonRequest.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) * 4) + (2 * sizeof(uint)) + sizeof(ushort);
            if (this.EssdnSize > 0)
            {
                size += this.EssdnSize;
            }

            return size;
        }
    }
RopLogonRequest