コード例 #1
0
 // Token: 0x06000212 RID: 530 RVA: 0x00009A88 File Offset: 0x00007C88
 public void End()
 {
     try
     {
         if (this.Exception != null)
         {
             throw AsyncExceptionWrapperHelper.GetAsyncWrapper(this.Exception);
         }
     }
     finally
     {
         this.Dispose();
     }
 }
コード例 #2
0
        // Token: 0x06000221 RID: 545 RVA: 0x00009C48 File Offset: 0x00007E48
        public new T End()
        {
            T result;

            try
            {
                if (base.Exception != null)
                {
                    throw AsyncExceptionWrapperHelper.GetAsyncWrapper(base.Exception);
                }
                result = this.Result;
            }
            finally
            {
                base.Dispose();
            }
            return(result);
        }