LoadTestContext.Values Property
Gets 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)
'Usage
Dim instance As LoadTestContext
Dim value As ICollection(Of Object)
value = instance.Values
public ICollection<Object> Values { get; }
public:
virtual property ICollection<Object^>^ Values {
ICollection<Object^>^ get () sealed;
}
public 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> returned by the Keys property.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.