/// <remarks/>
 public void Application_SetTagAsync(WebServiceSimpleAuthentication Authentication, EnvironmentApplicationTagList EnvironmentApplicationsForTag)
 {
     this.Application_SetTagAsync(Authentication, EnvironmentApplicationsForTag, null);
 }
 /// <remarks/>
 public void Application_SetTagAsync(WebServiceSimpleAuthentication Authentication, EnvironmentApplicationTagList EnvironmentApplicationsForTag, object userState)
 {
     if ((this.Application_SetTagOperationCompleted == null))
     {
         this.Application_SetTagOperationCompleted = new System.Threading.SendOrPostCallback(this.OnApplication_SetTagOperationCompleted);
     }
     this.InvokeAsync("Application_SetTag", new object[] {
         Authentication,
         EnvironmentApplicationsForTag
     }, this.Application_SetTagOperationCompleted, userState);
 }
        public bool Application_SetTag(WebServiceSimpleAuthentication Authentication, EnvironmentApplicationTagList EnvironmentApplicationsForTag, out APIStatus Status)
        {
            object[] results = this.Invoke("Application_SetTag", new object[] {
                Authentication,
                EnvironmentApplicationsForTag
            });

            Status = ((APIStatus)(results[1]));
            return((bool)(results[0]));
        }