Microsoft.Protocols.TestSuites.MS_OXCFXICS.MessageContent.Deserialize C# (CSharp) Method

Deserialize() public method

Deserialize fields from a FastTransferStream.
public Deserialize ( FastTransferStream stream ) : void
stream FastTransferStream A FastTransferStream.
return void
        public override void Deserialize(FastTransferStream stream)
        {
            this.propList = new PropList(stream);
            this.messageChildren = new MessageChildren(stream);
        }
    }