public XmlRpcMethodAttribute(
     string methodName,
     string methodDescription,
     XmlRpcResponseType responseType)
 {
     MethodName        = methodName;
     MethodDescription = methodDescription;
     ResponseType      = responseType;
 }
 public XmlRpcMethodAttribute(
     string methodName,
     string methodDescription,
     XmlRpcResponseType responseType)
 {
     MethodName = methodName;
     MethodDescription = methodDescription;
     ResponseType = responseType;
 }
 public XmlRpcMethodDescriptor(
     string name,
     string description,
     XmlRpcResponseType responseType,
     MethodInfo methodInfo)
 {
     Name = name;
     Description = description;
     ResponseType = responseType;
     MethodInfo = methodInfo;
 }
示例#4
0
 public XmlRpcMethodDescriptor(
     string name,
     string description,
     XmlRpcResponseType responseType,
     MethodInfo methodInfo)
 {
     Name         = name;
     Description  = description;
     ResponseType = responseType;
     MethodInfo   = methodInfo;
 }
 public XmlRpcMethodAttribute(string methodName, XmlRpcResponseType responseType)
     : this(methodName, "-", responseType)
 {
 }
 public XmlRpcMethodAttribute(string methodName, XmlRpcResponseType responseType)
     : this(methodName, "-", responseType)
 {
 }