System.Threading.HostExecutionContext.CreateCopy C# (CSharp) Method

CreateCopy() public method

public CreateCopy ( ) : HostExecutionContext
return HostExecutionContext
        public virtual HostExecutionContext CreateCopy()
        {
            return new HostExecutionContext(State);
        }

Usage Example

        public ExecutionContext CreateCopy()
        {
            if (!isNewCapture)
            {
                throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_CannotCopyUsedContext"));
            }
            ExecutionContext ec = new ExecutionContext();

            ec.isNewCapture = true;
#if FEATURE_SYNCHRONIZATIONCONTEXT
            ec._syncContext = _syncContext == null ? null : _syncContext.CreateCopy();
#endif // #if FEATURE_SYNCHRONIZATIONCONTEXT
#if FEATURE_CAS_POLICY
            // capture the host execution context
            ec._hostExecutionContext = _hostExecutionContext == null ? null : _hostExecutionContext.CreateCopy();
#endif // FEATURE_CAS_POLICY
#if FEATURE_IMPERSONATION || FEATURE_COMPRESSEDSTACK
            if (_securityContext != null)
            {
                ec._securityContext = _securityContext.CreateCopy();
                ec._securityContext.ExecutionContext = ec;
            }
#endif // #if FEATURE_IMPERSONATION || FEATURE_COMPRESSEDSTACK

            if (this._logicalCallContext != null)
            {
                ec.LogicalCallContext = (LogicalCallContext)this.LogicalCallContext.Clone();
            }

            Contract.Assert(this._illogicalCallContext == null);

            return(ec);
        }
All Usage Examples Of System.Threading.HostExecutionContext::CreateCopy