Esempio n. 1
0
 ///<summary>
 ///Marshal the data to the DataOutputStream.  Note: Length needs to be set before calling this method
 ///</summary>
 new public void marshal(DataOutputStream dos)
 {
     base.marshal(dos);
     try
     {
         _orginatingEntityID.marshal(dos);
         _receivingEntityID.marshal(dos);
         _relationship.marshal(dos);
         _partLocation.marshal(dos);
         _namedLocationID.marshal(dos);
         _partEntityType.marshal(dos);
     } // end try
     catch (Exception e)
     {
         Trace.WriteLine(e);
         Trace.Flush();
     }
 } // end of marshal method