Microsoft.Protocols.TestSuites.Common.RopQueryNamedPropertiesRequest.Size C# (CSharp) Метод

Size() публичный Метод

Return the size of this structure.
public Size ( ) : int
Результат int
        public int Size()
        {
            int size = sizeof(byte) * 5;
            if (this.HasGuid != 0)
            {
                // PropertyGuid holds 16 bytes.
                size += 16;
            }

            return size;
        }
    }
RopQueryNamedPropertiesRequest