FormPostParameter Class

Represents an HTML form POST parameter.

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

Syntax

'Declaration
<SerializableAttribute> _
Public Class FormPostParameter _
    Inherits Parameter
'Usage
Dim instance As FormPostParameter
[SerializableAttribute]
public class FormPostParameter : Parameter
[SerializableAttribute]
public ref class FormPostParameter : public Parameter
public class FormPostParameter extends Parameter

Remarks

This is stored as an attribute/value pair that is identified by the Name and Value properties. Form POST parameters are collected from HTML tags that represent Submit Buttons, Text Fields, Radio Buttons, Check Boxes, Hidden Fields, and Password Fields among other tags that contain information to be transmitted to the server by using an HTTP post.

Inheritance Hierarchy

System.Object
  Microsoft.VisualStudio.TestTools.WebTesting.Parameter
    Microsoft.VisualStudio.TestTools.WebTesting.FormPostParameter
      Microsoft.VisualStudio.TestTools.WebTesting.FileUploadParameter

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

FormPostParameter Members

Microsoft.VisualStudio.TestTools.WebTesting Namespace

Other Resources

Working with Web Tests