Microsoft.Protocols.TestSuites.Common.RopGetPropertiesSpecificRequest.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) * 3) + (sizeof(ushort) * 3);
            if (this.PropertyTagCount > 0)
            {
                size += this.PropertyTags.Length * Marshal.SizeOf(typeof(PropertyTag));
            }

            return size;
        }
    }
RopGetPropertiesSpecificRequest