///<summary> Reads this HLAdestroyFederationExecutionMessage from the specified stream.</summary> ///<param name="reader"> the input stream to read from</param> ///<returns> the object</returns> ///<exception cref="IOException"> if an error occurs</exception> public override object Deserialize(HlaEncodingReader reader, ref object msg) { HLAdestroyFederationExecutionMessage decodedValue; if (!(msg is HLAdestroyFederationExecutionMessage)) { decodedValue = new HLAdestroyFederationExecutionMessage(); BaseInteractionMessage baseMsg = msg as BaseInteractionMessage; decodedValue.InteractionClassHandle = baseMsg.InteractionClassHandle; decodedValue.FederationExecutionHandle = baseMsg.FederationExecutionHandle; decodedValue.UserSuppliedTag = baseMsg.UserSuppliedTag; } else { decodedValue = msg as HLAdestroyFederationExecutionMessage; } object tmp = decodedValue; decodedValue = base.Deserialize(reader, ref tmp) as HLAdestroyFederationExecutionMessage; try { decodedValue.FederationExecutionName = reader.ReadHLAunicodeString(); } catch (System.IO.IOException ioe) { throw new RTIinternalError(ioe.ToString()); } return(decodedValue); }
///<summary> Reads this HLAdestroyFederationExecutionMessage from the specified stream.</summary> ///<param name="reader"> the input stream to read from</param> ///<returns> the object</returns> ///<exception cref="IOException"> if an error occurs</exception> public override object Deserialize(HlaEncodingReader reader, ref object msg) { HLAdestroyFederationExecutionMessage decodedValue; if (!(msg is HLAdestroyFederationExecutionMessage)) { decodedValue = new HLAdestroyFederationExecutionMessage(); BaseInteractionMessage baseMsg = msg as BaseInteractionMessage; decodedValue.InteractionClassHandle = baseMsg.InteractionClassHandle; decodedValue.FederationExecutionHandle = baseMsg.FederationExecutionHandle; decodedValue.UserSuppliedTag = baseMsg.UserSuppliedTag; } else { decodedValue = msg as HLAdestroyFederationExecutionMessage; } object tmp = decodedValue; decodedValue = base.Deserialize(reader, ref tmp) as HLAdestroyFederationExecutionMessage; try { decodedValue.FederationExecutionName = reader.ReadHLAunicodeString(); } catch(System.IO.IOException ioe) { throw new RTIinternalError(ioe.ToString()); } return decodedValue; }