Beispiel #1
0
        /// <summary>
        /// Initializes a new instance of <see cref="XmlRpcServiceDispatcher"/> class.
        /// </summary>
        /// <param name="serviceType"></param>
        public XmlRpcServiceDispatcher(Type serviceType)
        {
            this.serviceType = serviceType;

            xmlRpcSerializer  = new XmlRpcSerializer();
            xmlRpcServiceInfo = XmlRpcServiceInfo.CreateXmlRpcServiceInfo(serviceType);
        }
 /// <summary>
 /// Initializes a new instance of <see cref="XmlRpcServiceIntrospector"/> class.
 /// </summary>
 /// <param name="serviceType"></param>
 public XmlRpcServiceIntrospector(Type serviceType)
 {
     xmlRpcServiceInfo = XmlRpcServiceInfo.CreateXmlRpcServiceInfo(serviceType);
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of <see cref="XmlRpcServiceProxy"/> class.
 /// </summary>
 /// <param name="xmlRpcServiceType"></param>
 internal XmlRpcServiceProxy(Type xmlRpcServiceType)
 {
     xmlRpcServiceInfo =
         XmlRpcServiceInfo.CreateXmlRpcServiceInfo(xmlRpcServiceType);
 }