Esempio n. 1
0
 /// <summary>
 /// Converts the InboundStreamStableParameters to byte array
 /// </summary>
 /// <returns>Byte array</returns>
 public void ToByteArray(InboundStreamStableParameters value, BinaryWriter writer)
 {
     try
     {
         value.WriteBaseParameters(writer);
     }
     catch (Exception e)
     {
         Tracing.WriteExceptionAsError("InboundStreamStableParameters.ToByteArray", e, "Content: {0}", this);
     }
 }