示例#1
0
        /// <inheritdoc />
        public override Stream EndGetRequestStream(IAsyncResult asyncResult)
        {
            if (null == _shadowCopyRequestStream)
            {
                _shadowCopyRequestStream = new ShadowCopyStream(base.EndGetRequestStream(asyncResult));
            }

            return(_shadowCopyRequestStream);
        }
示例#2
0
        /// <inheritdoc />
        public override Stream GetRequestStream()
        {
            if (null == _shadowCopyRequestStream)
            {
                _shadowCopyRequestStream = new ShadowCopyStream(base.GetRequestStream());
            }

            return(_shadowCopyRequestStream);
        }