Microsoft.Protocols.TestSuites.MS_OXORULE.TagActionData.Serialize C# (CSharp) Method

Serialize() public method

Get serialized byte array for this ActionData
public Serialize ( ) : byte[]
return byte[]
        public byte[] Serialize()
        {
            List<byte> result = new List<byte>();
            result.AddRange(this.PropertyTag.Serialize());
            result.AddRange(this.PropertyValue);
            return result.ToArray();
        }