Microsoft.Protocols.TestSuites.MS_OXNSPI.AndRestriction.Size C# (CSharp) Method

Size() public method

Get the size of the restriction data.
public Size ( ) : int
return int
        public override int Size()
        {
            int size = 0;
            size += sizeof(byte) + sizeof(uint);

            return size;
        }
    }