/// <summary>Constructor.</summary>
 /// <param name="server"><c>XmlRpcServer</c> server to be the system object for.</param>
 public XmlRpcSystemObject(XmlRpcServer server)
 {
     _server = server;
     server.Add("system", this);
     _methodHelp.Add(this.GetType().FullName + ".methodHelp", "Return a string description.");
 }
Beispiel #2
0
 /// <summary>Constructor.</summary>
 /// <param name="server"><c>XmlRpcServer</c> server to be the system object for.</param>
 public XmlRpcSystemObject(XmlRpcServer server)
 {
     this._server = server;
     server.Add("system", this);
     _methodHelp.Add(string.Format("{0}.methodHelp", this.GetType().FullName), "Return a string description.");
 }
Beispiel #3
0
 /// <summary>Constructor.</summary>
 /// <param name="server"><c>XmlRpcServer</c> server to be the system object for.</param>
 public XmlRpcSystemObject(XmlRpcServer server)
 {
     _server = server;
     server.Add("system", this);
     _methodHelp.Add(this.GetType().FullName + ".methodHelp", "Return a string description.");
 }