LastResponseCodeRule Class
Class to contain a conditional rule that checks the response code of the last response. Applies only to condition statements.
Inheritance Hierarchy
System.Object
Microsoft.VisualStudio.TestTools.WebTesting.ConditionalRule
Microsoft.VisualStudio.TestTools.WebTesting.Rules.LastResponseCodeRule
Namespace: Microsoft.VisualStudio.TestTools.WebTesting.Rules
Assembly: Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)
Syntax
'Declaration
<ConditionalRuleTypeAttribute(ConditionalRuleType.ConditionOnly)> _
Public Class LastResponseCodeRule _
Inherits ConditionalRule
[ConditionalRuleTypeAttribute(ConditionalRuleType.ConditionOnly)]
public class LastResponseCodeRule : ConditionalRule
[ConditionalRuleTypeAttribute(ConditionalRuleType::ConditionOnly)]
public ref class LastResponseCodeRule : public ConditionalRule
[<ConditionalRuleTypeAttribute(ConditionalRuleType.ConditionOnly)>]
type LastResponseCodeRule =
class
inherit ConditionalRule
end
public class LastResponseCodeRule extends ConditionalRule
The LastResponseCodeRule type exposes the following members.
Constructors
Name | Description | |
---|---|---|
LastResponseCodeRule | Initializes a new instance of the LastResponseCodeRule class. |
Top
Properties
Name | Description | |
---|---|---|
ComparisonOperator | Gets or sets the comparison operator. | |
ResponseCode | Gets or sets the response code. |
Top
Methods
Name | Description | |
---|---|---|
CheckCondition | Determines whether the condition was met. The condition is met if the status code of the previous response matches the provided status code. (Overrides ConditionalRule.CheckCondition(Object, ConditionalEventArgs).) | |
CleanUp | Called after the loop or condition has finished executing. This includes any requests in the body. Any cleanup code that is relevant to the conditional rule must be added to this method. (Inherited from ConditionalRule.) | |
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Initialize | Called before the first CheckCondition call is made. Any initialization code that is relevant to the conditional rule should be added to this method. (Inherited from ConditionalRule.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
StringRepresentation | Converts the rule to a string to be displayed in the tree. (Overrides ConditionalRule.StringRepresentation().) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.