BaxterWorks.Example.SOAPClientDefault.ExampleDispatcherService.HelloPhrase C# (CSharp) Method

HelloPhrase() private method

private HelloPhrase ( string first_word, string second_word ) : string
first_word string
second_word string
return string
        public string HelloPhrase(string first_word, string second_word)
        {
            object[] results = this.Invoke("HelloPhrase", new object[] {
                        first_word,
                        second_word});
            return ((string)(results[0]));
        }

Same methods

ExampleDispatcherService::HelloPhrase ( object &value ) : void