コード例 #1
0
 public System.Threading.Tasks.Task <MyLibraryService.AddNewBookResponse> AddNewBookAsync(string token, MyLibraryService.Book book)
 {
     MyLibraryService.AddNewBookRequest inValue = new MyLibraryService.AddNewBookRequest();
     inValue.Body       = new MyLibraryService.AddNewBookRequestBody();
     inValue.Body.token = token;
     inValue.Body.book  = book;
     return(((MyLibraryService.LibraryServiceSoap)(this)).AddNewBookAsync(inValue));
 }
コード例 #2
0
 public AddNewBookRequestBody(string token, MyLibraryService.Book book)
 {
     this.token = token;
     this.book  = book;
 }