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