2 writes to Scope
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\CorrelationHandle.cs (2)
193this.Scope = executionContext.DefaultBookmarkScope; 285this.Scope = this.bookmarkScopeHandle.BookmarkScope;
12 references to Scope
System.ServiceModel.Activities (12)
System\ServiceModel\Activities\CorrelationHandle.cs (8)
191if (this.Scope == null) 195return this.Scope; 282if (this.Scope == null) 289if (this.Scope.IsInitialized) 291if (this.Scope.Id != instanceKey.Value) 294new InvalidOperationException(SR.CorrelationHandleInUse(this.Scope.Id, instanceKey.Value))); 299this.Scope.Initialize(context, instanceKey.Value); 307if (this.Scope != null || this.CallbackContext != null || this.Context != null || this.ResponseContext != null || this.RequestContext != null || (this.InstanceKey != null && this.InstanceKey.IsValid))
System\ServiceModel\Activities\InternalReceiveMessage.cs (2)
201if (followingCorrelation != null && followingCorrelation.Scope != null) 203bookmarkScope = followingCorrelation.Scope;
System\ServiceModel\Activities\InternalSendMessage.cs (2)
1503if (followingContextHandle != null && (followingContextHandle.Scope == null || followingContextHandle.Scope.IsInitialized == false))