예제 #1
0
 public override void SetLength(long value)
 {
     token.ThrowIfCancellationRequested();
     try {
         ParentStream.SetLength(value);
     } catch (Exception e) {
         if (exceptionMapper != null)
         {
             exceptionMapper(e);
         }
         throw e;
     }
 }
 public override void SetLength(long value)
 {
     token.ThrowIfCancellationRequested();
     ParentStream.SetLength(value);
 }
예제 #3
0
 public override void SetLength(long value)
 {
     ParentStream.SetLength(value);
 }