Ejemplo n.º 1
0
        internal MQMessageDescriptor(MQMessageDescriptor md)
        {
            MQMD mQMD = md.mqmd;

            this.mqmd.StrucId             = (byte[])this.mqmd.StrucId.Clone();
            this.mqmd.Version             = mQMD.Version;
            this.mqmd.Report              = mQMD.Report;
            this.mqmd.MsgType             = mQMD.MsgType;
            this.mqmd.Expiry              = mQMD.Expiry;
            this.mqmd.Feedback            = mQMD.Feedback;
            this.mqmd.Encoding            = mQMD.Encoding;
            this.mqmd.CodedCharacterSetId = mQMD.CodedCharacterSetId;
            this.mqmd.Format              = (byte[])mQMD.Format.Clone();
            this.mqmd.Priority            = mQMD.Priority;
            this.mqmd.Persistence         = mQMD.Persistence;
            this.mqmd.MsgId             = (byte[])mQMD.MsgId.Clone();
            this.mqmd.CorrelId          = (byte[])mQMD.CorrelId.Clone();
            this.mqmd.BackoutCount      = mQMD.BackoutCount;
            this.mqmd.ReplyToQ          = (byte[])mQMD.ReplyToQ.Clone();
            this.mqmd.ReplyToQMgr       = (byte[])mQMD.ReplyToQMgr.Clone();
            this.mqmd.UserId            = (byte[])mQMD.UserId.Clone();
            this.mqmd.AccountingToken   = (byte[])mQMD.AccountingToken.Clone();
            this.mqmd.ApplIdentityData  = (byte[])mQMD.ApplIdentityData.Clone();
            this.mqmd.PutApplType       = mQMD.PutApplType;
            this.mqmd.PutApplName       = (byte[])mQMD.PutApplName.Clone();
            this.mqmd.PutDate           = (byte[])mQMD.PutDate.Clone();
            this.mqmd.PutTime           = (byte[])mQMD.PutTime.Clone();
            this.mqmd.ApplOriginData    = (byte[])mQMD.ApplOriginData.Clone();
            this.mqmd.GroupId           = (byte[])mQMD.GroupId.Clone();
            this.mqmd.MsgSequenceNumber = mQMD.MsgSequenceNumber;
            this.mqmd.Offset            = mQMD.Offset;
            this.mqmd.MsgFlags          = mQMD.MsgFlags;
            this.mqmd.OriginalLength    = mQMD.OriginalLength;
        }
Ejemplo n.º 2
0
 protected MQMessage(MQMessage msg)
 {
     this.ClearMessage();
     this.md = new MQMessageDescriptor(msg.md);
 }
Ejemplo n.º 3
0
 public MQMessage()
 {
     this.ClearMessage();
     this.md         = new MQMessageDescriptor();
     this.properties = new Hashtable(40);
 }