Microsoft.Protocols.TestSuites.MS_OXORULE.PropertyTagArray_r.Serialize C# (CSharp) Méthode

Serialize() public méthode

This method is used for serializing the PropertyTagArray_r.
public Serialize ( ) : byte[]
Résultat byte[]
        public byte[] Serialize()
        {
            List<byte> buffer = new List<byte>();
            buffer.AddRange(BitConverter.GetBytes(this.Values));
            for (int i = 0; i < this.AulPropTag.Length; i++)
            {
                buffer.AddRange(BitConverter.GetBytes(this.AulPropTag[i]));
            }

            return buffer.ToArray();
        }
    }
PropertyTagArray_r