Microsoft.Protocols.TestSuites.Common.RopRegisterNotificationRequest.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) * 7;
            if (this.WantWholeStore == 0)
            {
                // 16 indicates sizeof(UInt64) * 2
                size += 16;
            }

            return size;
        }
    }
RopRegisterNotificationRequest