Appcelerator.Service.Service C# (CSharp) Method

Service() public method

Creates an Appcelerator Service
public Service ( String request, String response, MethodInfo methodInfo ) : System
request String The service request string (e.g. "my.message.request")
response String The service response string (e.g. "my.message.response")
methodInfo System.Reflection.MethodInfo The MethodInfo object describing the method to invoke upon receiving a request
return System
        public Service(String request, String response, MethodInfo methodInfo)
        {
            this.Request = request;
            this.Response = response;
            this.MethodInfo = methodInfo;
        }