Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

54 lines
1.8 KiB
C#

//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities.Expressions
{
using System.Linq.Expressions;
using System.Runtime;
[Fx.Tag.XamlVisible(false)]
sealed class LocationReferenceValue<T> : CodeActivity<T>, IExpressionContainer, ILocationReferenceWrapper, ILocationReferenceExpression
{
LocationReference locationReference;
internal LocationReferenceValue(LocationReference locationReference)
{
this.UseOldFastPath = true;
this.locationReference = locationReference;
}
LocationReference ILocationReferenceWrapper.LocationReference
{
get
{
return this.locationReference;
}
}
protected override void CacheMetadata(CodeActivityMetadata metadata)
{
// the creator of this activity is expected to have checked visibility of LocationReference.
// we override the base CacheMetadata to avoid unnecessary reflection overhead.
}
protected override T Execute(CodeActivityContext context)
{
try
{
context.AllowChainedEnvironmentAccess = true;
return context.GetValue<T>(this.locationReference);
}
finally
{
context.AllowChainedEnvironmentAccess = false;
}
}
ActivityWithResult ILocationReferenceExpression.CreateNewInstance(LocationReference locationReference)
{
return new LocationReferenceValue<T>(locationReference);
}
}
}