Exemplo 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);
Exemplo n.º 2
0
 public override void IceWritePayload(OutputStream ostr)
 {
     Debug.Assert(false);
     throw new NotImplementedException("cannot write the payload for an opaque endpoint");
 }
Exemplo n.º 3
0
 public override void IceWritePayload(OutputStream ostr)
 {
     _delegate.IceWritePayload(ostr);
     ostr.WriteString(Resource);
 }