예제 #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);
 }