Microsoft.Protocols.TestSuites.Common.RopRestrictRequest.Size C# (CSharp) 메소드

Size() 공개 메소드

Return the size of this structure.
public Size ( ) : int
리턴 int
        public int Size()
        {
            int size = (sizeof(byte) * 4) + sizeof(ushort);
            if (null != this.RestrictionData)
            {
                size += this.RestrictionData.Length;
            }

            return size;
        }
    }
RopRestrictRequest