ContextParameter Class

Represents a single parameter in the Web performance testing context that has a name and value.

Inheritance Hierarchy

Object
  Microsoft.VisualStudio.TestTools.WebTesting.ContextParameter

Namespace:  Microsoft.VisualStudio.TestTools.WebTesting
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Syntax

'Declaration
<SerializableAttribute> _
Public Class ContextParameter _
    Implements ICloneable
[SerializableAttribute]
public class ContextParameter : ICloneable
[SerializableAttribute]
public ref class ContextParameter : ICloneable
[<SerializableAttribute>]
type ContextParameter =  
    class 
        interface ICloneable 
    end
public class ContextParameter implements ICloneable

The ContextParameter type exposes the following members.

Constructors

  Name Description
Public method ContextParameter() Initializes a new instance of the ContextParameter class.
Public method ContextParameter(String, String) Initializes a new instance of the ContextParameter class by using the provided name and value.

Top

Properties

  Name Description
Public property Name Gets or sets the name of the ContextParameter.
Public property Value Gets or sets the value of the ContextParameter.

Top

Methods

  Name Description
Public method Clone Creates a new ContextParameter that is a copy of the current instance.
Public method Equals Determines whether the specified object is equal to the current object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as the default hash function. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Remarks

A ContextParameter object is typically one of many ContextParameter objects in the WebTest.Context property that is a collection of ContextParameter objects.

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.

See Also

Reference

Microsoft.VisualStudio.TestTools.WebTesting Namespace