Apache.NMS.ActiveMQ.Commands.WireFormatInfo.BeforeMarshall C# (CSharp) Method

BeforeMarshall() public method

public BeforeMarshall ( OpenWireFormat wireFormat ) : void
wireFormat Apache.NMS.ActiveMQ.OpenWire.OpenWireFormat
return void
        public override void BeforeMarshall(OpenWireFormat wireFormat)
        {
            MarshalledProperties = null;

            if(properties != null)
            {
                MarshalledProperties = properties.Marshal();
            }
        }