2 implementations of ILocationReferenceWrapper
System.Activities (2)
System\Activities\Expressions\LocationReferenceValue.cs (1)
11sealed class LocationReferenceValue<T> : CodeActivity<T>, IExpressionContainer, ILocationReferenceWrapper, ILocationReferenceExpression
System\Activities\InlinedLocationReference.cs (1)
10class InlinedLocationReference : LocationReference, ILocationReferenceWrapper
10 references to ILocationReferenceWrapper
System.Activities (10)
Microsoft\VisualBasic\Activities\VisualBasicNameShadowingConstraint.cs (2)
27if (boundExpression != null && boundExpression is ILocationReferenceWrapper) 29locationReference = ((ILocationReferenceWrapper)boundExpression).LocationReference;
System\Activities\Expressions\LocationReferenceValue.cs (1)
21LocationReference ILocationReferenceWrapper.LocationReference
System\Activities\InlinedLocationReference.cs (1)
111LocationReference ILocationReferenceWrapper.LocationReference
System\Activities\XamlIntegration\ExpressionTreeRewriter.cs (4)
46ILocationReferenceWrapper inlinedReference = (ILocationReferenceWrapper)node.Value; 66if (locationReference is ILocationReferenceWrapper) 68newNode = ExpressionUtilities.CreateIdentifierExpression(((ILocationReferenceWrapper)locationReference).LocationReference);
System\Activities\XamlIntegration\TextExpressionCompiler.cs (2)
696if (boundExpression != null && boundExpression is ILocationReferenceWrapper) 698locationReference = ((ILocationReferenceWrapper)boundExpression).LocationReference;