LoadTestUserContext.Keys Property
Gets an ICollection that contains the keys of the LoadTestUserContext 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 LoadTestUserContext
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 that contains the keys of the LoadTestUserContext.
Implements
IDictionary<TKey, TValue>.Keys
Remarks
The order of the keys in the returned Generic ICollection is unspecified, but it is guaranteed to be the same order as the corresponding values in the Generic ICollection 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.