Microsoft.Protocols.TestSuites.MS_OXORULE.AddressBookTaggedPropertyValue.Size C# (CSharp) Method

Size() public method

Return the Size of this struct.
public Size ( ) : int
return int
        public override int Size()
        {
            int size = this.PropertyTag.Size();
            if ((this.PropertyTag.PropertyType == 0x1e || this.PropertyTag.PropertyType == 0x1f || this.PropertyTag.PropertyType == 0x102) && this.Value.Length != 0)
            {
                size += sizeof(byte);
            }

            size += base.Size();
            return size;
        }
AddressBookTaggedPropertyValue