Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

PropertyCollection::Item Property (String^)

 

Gets or sets the first property value that is stored with the specified property name.

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

public:
property String^ default[
	String^ propertyName
] {
	String^ get(String^ propertyName);
	void set(String^ propertyName, String^ value);
}

Parameters

propertyName
Type: System::String^

The property name.

Property Value

Type: System::String^

The first property value that is stored with the specified property name.

This property provides the ability to access a specific element in the collection by using the following syntax: myCollection["Property Name"].

Return to top
Show: