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