22 references to Find
System.Activities (10)
System\Activities\DynamicUpdate\NativeActivityUpdateContext.cs (1)
95return exeProperties.Find(name);
System\Activities\NativeActivityContext.cs (1)
84if ((this.Properties.Find(NoPersistProperty.Name) != null) || (this.executor.HasRuntimeTransaction))
System\Activities\Statements\CompensableActivity.cs (1)
337parentToken = (CompensationToken)context.Properties.Find(CompensationToken.PropertyName);
System\Activities\Statements\Compensate.cs (1)
182CompensationToken ambientCompensationToken = (CompensationToken)context.Properties.Find(CompensationToken.PropertyName);
System\Activities\Statements\Confirm.cs (1)
191CompensationToken ambientCompensationToken = (CompensationToken)context.Properties.Find(CompensationToken.PropertyName);
System\Activities\Statements\Pick.cs (1)
310PickState pickState = (PickState)context.Properties.Find(pickStateProperty);
System\Activities\Statements\Rethrow.cs (1)
42FaultContext faultContext = context.Properties.Find(TryCatch.FaultContextId) as FaultContext;
System\Activities\Statements\TransactionScope.cs (2)
300RuntimeTransactionHandle foundHandle = context.Properties.Find(runtimeTransactionHandlePropertyName) as RuntimeTransactionHandle; 398RuntimeTransactionHandle handle = context.Properties.Find(runtimeTransactionHandlePropertyName) as RuntimeTransactionHandle;
System\Activities\Validation\Constraint.cs (1)
35List<ValidationError> validationErrorList = context.Properties.Find(ValidationErrorListPropertyName) as List<ValidationError>;
System.ServiceModel.Activities (12)
System\ServiceModel\Activities\CorrelationHandle.cs (1)
317return context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\InitializeCorrelation.cs (1)
46correlationHandle = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\InternalReceiveMessage.cs (5)
311ambientCorrelation = executionContext.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle; 340ambientCorrelation = executionContext.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle; 393handle = executionContext.Properties.Find(runtimeTransactionHandlePropertyName) as RuntimeTransactionHandle; 399TransactedReceiveData transactedReceiveData = executionContext.Properties.Find(TransactedReceiveData.TransactedReceiveDataExecutionPropertyName) as TransactedReceiveData; 1153this.ambientCorrelation = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\InternalSendMessage.cs (2)
2274this.AmbientHandle = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle; 2299this.AmbientHandle = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\ToReply.cs (1)
140correlatesWith = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\TransactedReceiveScope.cs (2)
223RuntimeTransactionHandle foundHandle = context.Properties.Find(handleInstance.ExecutionPropertyName) as RuntimeTransactionHandle; 260TransactedReceiveData transactedReceiveData = context.Properties.Find(TransactedReceiveData.TransactedReceiveDataExecutionPropertyName) as TransactedReceiveData;