/// <remarks/>
 public void CorrectAndResendEnvelopeAsync(Correction Correction) {
     this.CorrectAndResendEnvelopeAsync(Correction, null);
 }
 /// <remarks/>
 public void CorrectAndResendEnvelopeAsync(Correction Correction, object userState) {
     if ((this.CorrectAndResendEnvelopeOperationCompleted == null)) {
         this.CorrectAndResendEnvelopeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCorrectAndResendEnvelopeOperationCompleted);
     }
     this.InvokeAsync("CorrectAndResendEnvelope", new object[] {
                 Correction}, this.CorrectAndResendEnvelopeOperationCompleted, userState);
 }
 public CorrectionStatus CorrectAndResendEnvelope(Correction Correction) {
     object[] results = this.Invoke("CorrectAndResendEnvelope", new object[] {
                 Correction});
     return ((CorrectionStatus)(results[0]));
 }