LoadTestContext.Keys Property
Gets an ICollection<T> that contains the keys of the LoadTestContext elements.
Namespace: Microsoft.VisualStudio.TestTools.LoadTesting
Assembly: Microsoft.VisualStudio.QualityTools.LoadTestFramework (in Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll)
Syntax
'Declaration
Public ReadOnly Property Keys As ICollection(Of String)
'Usage
Dim instance As LoadTestContext
Dim value As ICollection(Of String)
value = instance.Keys
public ICollection<string> Keys { get; }
public:
virtual property ICollection<String^>^ Keys {
ICollection<String^>^ get () sealed;
}
public final function get Keys () : ICollection<String>
Property Value
Type: System.Collections.Generic.ICollection<String>
A Generic ICollection<T> that contains the keys of the LoadTestContext.
Implements
IDictionary<TKey, TValue>.Keys
Remarks
The order of the keys in the returned Generic ICollection<T> is unspecified, but it is guaranteed to be the same order as the corresponding values in the Generic ICollection<T> returned by the Values 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.