public virtual void Marshal(DataOutputStream dos)
 {
     if (dos != null)
     {
         try
         {
             dos.WriteUnsignedByte((byte)this._recordType);
             dos.WriteDouble((double)this._variableParameterFields1);
             dos.WriteUnsignedInt((uint)this._variableParameterFields2);
             dos.WriteUnsignedShort((ushort)this._variableParameterFields3);
             dos.WriteUnsignedByte((byte)this._variableParameterFields4);
         }
         catch (Exception e)
         {
     #if DEBUG
             Trace.WriteLine(e);
             Trace.Flush();
     #endif
             this.OnException(e);
         }
     }
 }
 public virtual void Marshal(DataOutputStream dos)
 {
     if (dos != null)
     {
         try
         {
             dos.WriteUnsignedByte((byte)this._parameterTypeDesignator);
             dos.WriteUnsignedByte((byte)this._changeIndicator);
             dos.WriteUnsignedShort((ushort)this._partAttachedTo);
             dos.WriteInt((int)this._parameterType);
             dos.WriteDouble((double)this._parameterValue);
         }
         catch (Exception e)
         {
     #if DEBUG
             Trace.WriteLine(e);
             Trace.Flush();
     #endif
             this.OnException(e);
         }
     }
 }
Beispiel #3
0
 public virtual void Marshal(DataOutputStream dos)
 {
     if (dos != null)
     {
         try
         {
             dos.WriteDouble((double)this._domainInitialXi);
             dos.WriteDouble((double)this._domainFinalXi);
             dos.WriteUnsignedShort((ushort)this._domainPointsXi);
             dos.WriteUnsignedByte((byte)this._interleafFactor);
             dos.WriteUnsignedByte((byte)this._axisType);
             dos.WriteUnsignedShort((ushort)this._numberOfPointsOnXiAxis);
             dos.WriteUnsignedShort((ushort)this._initialIndex);
         }
         catch (Exception e)
         {
     #if DEBUG
             Trace.WriteLine(e);
             Trace.Flush();
     #endif
             this.OnException(e);
         }
     }
 }
 public virtual void Marshal(DataOutputStream dos)
 {
     if (dos != null)
     {
         try
         {
             dos.WriteDouble((double)this._x);
             dos.WriteDouble((double)this._y);
             dos.WriteDouble((double)this._z);
         }
         catch (Exception e)
         {
     #if DEBUG
             Trace.WriteLine(e);
             Trace.Flush();
     #endif
             this.OnException(e);
         }
     }
 }