3 implementations of ILocationReferenceExpression
System.Activities (3)
System\Activities\Expressions\EnvironmentLocationReference.cs (1)
11public class EnvironmentLocationReference<T> : CodeActivity<Location<T>>, IExpressionContainer, ILocationReferenceExpression
System\Activities\Expressions\EnvironmentLocationValue.cs (1)
11public class EnvironmentLocationValue<T> : CodeActivity<T>, IExpressionContainer, ILocationReferenceExpression
System\Activities\Expressions\LocationReferenceValue.cs (1)
11sealed class LocationReferenceValue<T> : CodeActivity<T>, IExpressionContainer, ILocationReferenceWrapper, ILocationReferenceExpression
12 references to ILocationReferenceExpression
System.Activities (12)
System\Activities\ActivityUtilities.cs (9)
1421static Dictionary<Type, ILocationReferenceExpression> locationReferenceValueTypeDefinitions = new Dictionary<Type, ILocationReferenceExpression>(); 1424static Dictionary<Type, ILocationReferenceExpression> environmentLocationReferenceTypeDefinitions = new Dictionary<Type, ILocationReferenceExpression>(); 1427static Dictionary<Type, ILocationReferenceExpression> environmentLocationValueTypeDefinitions = new Dictionary<Type, ILocationReferenceExpression>(); 1431Dictionary<Type, ILocationReferenceExpression> lookupTable = null; 1445ILocationReferenceExpression existingInstance; 1456existingInstance = (ILocationReferenceExpression)Activator.CreateInstance(
System\Activities\Expressions\EnvironmentLocationReference.cs (1)
54ActivityWithResult ILocationReferenceExpression.CreateNewInstance(LocationReference locationReference)
System\Activities\Expressions\EnvironmentLocationValue.cs (1)
54ActivityWithResult ILocationReferenceExpression.CreateNewInstance(LocationReference locationReference)
System\Activities\Expressions\LocationReferenceValue.cs (1)
48ActivityWithResult ILocationReferenceExpression.CreateNewInstance(LocationReference locationReference)