Appcelerator.ServiceAttribute.ServiceAttribute C# (CSharp) Method

ServiceAttribute() public method

Creates a Service Attribute
public ServiceAttribute ( string request, string response ) : System
request string The service request string (e.g. "my.message.request")
response string The service response string (e.g. "my.messagege.response")
return System
        public ServiceAttribute(string request, string response)
        {
            _request = request;
            _response = response;
        }
ServiceAttribute