Esempio n. 1
0
 /// <summary>Writes the payload of this endpoint to the output stream. The payload does not include the type nor
 /// the enclosing encapsulation header.</summary>
 public abstract void IceWritePayload(OutputStream ostr);
Esempio n. 2
0
 public override void IceWritePayload(OutputStream ostr)
 {
     Debug.Assert(false);
     throw new NotImplementedException("cannot write the payload for an opaque endpoint");
 }
Esempio n. 3
0
 public override void IceWritePayload(OutputStream ostr)
 {
     _delegate.IceWritePayload(ostr);
     ostr.WriteString(Resource);
 }