Apache.NMS.ActiveMQ.OpenWire.V4.ExceptionResponseMarshaller.LooseMarshal C# (CSharp) Метод

LooseMarshal() публичный Метод

public LooseMarshal ( OpenWireFormat wireFormat, Object o, BinaryWriter dataOut ) : void
wireFormat OpenWireFormat
o Object
dataOut System.IO.BinaryWriter
Результат void
        public override void LooseMarshal(OpenWireFormat wireFormat, Object o, BinaryWriter dataOut)
        {
            ExceptionResponse info = (ExceptionResponse)o;

            base.LooseMarshal(wireFormat, o, dataOut);
            LooseMarshalBrokerError(wireFormat, info.Exception, dataOut);
        }