Exemple #1
0
    public System.Threading.Tasks.Task <AddTermsResponse> AddTermsAsync(System.Guid sharedServiceId, System.Guid termSetId, int lcid, string newTerms)
    {
        AddTermsRequest inValue = new AddTermsRequest();

        inValue.Body = new AddTermsRequestBody();
        inValue.Body.sharedServiceId = sharedServiceId;
        inValue.Body.termSetId       = termSetId;
        inValue.Body.lcid            = lcid;
        inValue.Body.newTerms        = newTerms;
        return(((TaxonomywebserviceSoap)(this)).AddTermsAsync(inValue));
    }
Exemple #2
0
    public string AddTerms(System.Guid sharedServiceId, System.Guid termSetId, int lcid, string newTerms)
    {
        AddTermsRequest inValue = new AddTermsRequest();

        inValue.Body = new AddTermsRequestBody();
        inValue.Body.sharedServiceId = sharedServiceId;
        inValue.Body.termSetId       = termSetId;
        inValue.Body.lcid            = lcid;
        inValue.Body.newTerms        = newTerms;
        AddTermsResponse retVal = ((TaxonomywebserviceSoap)(this)).AddTerms(inValue);

        return(retVal.Body.AddTermsResult);
    }
Exemple #3
0
 System.Threading.Tasks.Task <AddTermsResponse> TaxonomywebserviceSoap.AddTermsAsync(AddTermsRequest request)
 {
     return(base.Channel.AddTermsAsync(request));
 }
Exemple #4
0
 AddTermsResponse TaxonomywebserviceSoap.AddTerms(AddTermsRequest request)
 {
     return(base.Channel.AddTerms(request));
 }