MindTouch.Clacks.Client.Response.Response C# (CSharp) Méthode

Response() public méthode

public Response ( string response ) : System
response string
Résultat System
        public Response(string[] response) {
            if(response.Length == 0) {
                throw new EmptyResponseException();
            }
            Status = response[0];
            Arguments = new string[response.Length - 1];
            if(Arguments.Length > 0) {
                Array.Copy(response, 1, Arguments, 0, Arguments.Length);
            }
       }
    }
Response