Inheritance: System.MarshalByRefObject, IUserInterface
Example #1
0
 public APIHostOutputStream(
     APIHost owner,
     PeerCast peercast,
     Stream input_stream,
     Stream output_stream,
     EndPoint remote_endpoint,
     HTTPRequest request,
     byte[] header)
     : base(peercast, input_stream, output_stream, remote_endpoint, null, header)
 {
     this.owner   = owner;
     this.request = request;
     this.rpcHost = new JSONRPCHost(this);
     Logger.Debug("Initialized: Remote {0}", remote_endpoint);
 }
Example #2
0
 public APIHostOutputStream(
     APIHost owner,
     PeerCast peercast,
     Stream input_stream,
     Stream output_stream,
     EndPoint remote_endpoint,
     HTTPRequest request,
     byte[] header)
     : base(peercast, input_stream, output_stream, remote_endpoint, null, header)
 {
     this.owner   = owner;
     this.request = request;
     this.rpcHost = new JSONRPCHost(this);
     Logger.Debug("Initialized: Remote {0}", remote_endpoint);
 }
Example #3
0
 public APIContext(
   APIHost owner,
   PeerCast peercast,
   AccessControlInfo access_control)
 {
   this.owner = owner;
   this.PeerCast = peercast;
   this.AccessControlInfo = access_control;
 }
Example #4
0
 public APIHostOutputStreamFactory(APIHost owner, PeerCast peercast)
     : base(peercast)
 {
     this.owner = owner;
 }
Example #5
0
 public APIHostOutputStreamFactory(APIHost owner, PeerCast peercast)
     : base(peercast)
 {
     this.owner = owner;
 }