コード例 #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
ファイル: OpaqueEndpoint.cs プロジェクト: Mu-L/ice
 public override void IceWritePayload(OutputStream ostr)
 {
     Debug.Assert(false);
     throw new NotImplementedException("cannot write the payload for an opaque endpoint");
 }
コード例 #3
0
ファイル: WSEndpoint.cs プロジェクト: nail-lian/ice
 public override void IceWritePayload(OutputStream ostr)
 {
     _delegate.IceWritePayload(ostr);
     ostr.WriteString(Resource);
 }