Microsoft.Protocols.TestSuites.Common.RopOptionsDataRequest.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;
            if (this.AddressType != null)
            {
                size += this.AddressType.Length;
            }

            return size;
        }
    }
RopOptionsDataRequest