| TestStepResultConditionEvaluate Method  | 
 
            Evaluates if the condition is the specified thread identifier.
            
 
    Namespace: 
   Hummingbird.TestFramework.Automation.FunctionalConditions
    Assembly:
   Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
 Syntax
Syntaxpublic override bool Evaluate(
	long threadId,
	TestStepBase testStep,
	List<Variable> context,
	Profile profile
)
Public Overrides Function Evaluate ( 
	threadId As Long,
	testStep As TestStepBase,
	context As List(Of Variable),
	profile As Profile
) As Boolean
public:
virtual bool Evaluate(
	long long threadId, 
	TestStepBase^ testStep, 
	List<Variable^>^ context, 
	Profile^ profile
) override
abstract Evaluate : 
        threadId : int64 * 
        testStep : TestStepBase * 
        context : List<Variable> * 
        profile : Profile -> bool 
override Evaluate : 
        threadId : int64 * 
        testStep : TestStepBase * 
        context : List<Variable> * 
        profile : Profile -> bool Parameters
- threadId
- Type: SystemInt64
 The thread ID who wants to evaluate the current functional condition.
- testStep
- Type: Hummingbird.TestFramework.AutomationTestStepBase
 The test step of which this condition belongs
- context
- Type: System.Collections.GenericListVariable
 The context.
- profile
- Type: Hummingbird.TestFramework.ConfigurationProfile
 The profile.
Return Value
Type: 
Boolean
            True of the evaluation is passed, False if the evaluation fails
            
 See Also
See Also