2 writes to declaredHandle
System.Activities (2)
System\Activities\Statements\HandleScope.cs (2)
52this.declaredHandle = new Variable<THandle>(); 57this.declaredHandle = null;
5 references to declaredHandle
System.Activities (5)
System\Activities\Statements\HandleScope.cs (5)
50if (this.declaredHandle == null) 60if (this.declaredHandle != null) 62ActivityUtilities.Add(ref implementationVariables, this.declaredHandle); 78Fx.Assert(this.declaredHandle != null, "We should have declared the variable if we didn't have the argument set."); 79scopedHandle = this.declaredHandle.Get(context);