示例#1
0
文件: Endpoint.cs 项目: jk990803/ice
 /// <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);
示例#2
0
 public override void IceWritePayload(OutputStream ostr)
 {
     Debug.Assert(false);
     throw new NotImplementedException("cannot write the payload for an opaque endpoint");
 }
示例#3
0
 public override void IceWritePayload(OutputStream ostr)
 {
     _delegate.IceWritePayload(ostr);
     ostr.WriteString(Resource);
 }