LoadTestContext.Values Property

Gets the ICollection<T> that contains the values in the LoadTestContext elements.

Namespace:  Microsoft.VisualStudio.TestTools.LoadTesting
Assembly:  Microsoft.VisualStudio.QualityTools.LoadTestFramework (in Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll)

Syntax

'Declaration
Public ReadOnly Property Values As ICollection(Of Object)
public ICollection<Object> Values { get; }
public:
virtual property ICollection<Object^>^ Values {
    ICollection<Object^>^ get () sealed;
}
abstract Values : ICollection<Object>
override Values : ICollection<Object>
final function get Values () : ICollection<Object>

Property Value

Type: System.Collections.Generic.ICollection<Object>
A Generic ICollection<T> that contains the values of the LoadTestContext elements.

Implements

IDictionary<TKey, TValue>.Values

Remarks

The order of the values in the returned Generic ICollection<T> is unspecified, but it is guaranteed to be the same order as the corresponding keys in the Generic ICollection<T> that is returned by the Keys property.

.NET Framework Security

See Also

Reference

LoadTestContext Class

Microsoft.VisualStudio.TestTools.LoadTesting Namespace