Gets the element identified with specified key.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)
Syntax
C# |
---|
public BCUserDBObject this[ string key ] { get; } |
Visual Basic |
---|
Public ReadOnly Default Property Item ( _ key As String _ ) As BCUserDBObject Get |
Visual C++ |
---|
public: property BCUserDBObject^ default[String^ key] { BCUserDBObject^ get (String^ key); } |
Parameters
- key
- Type: System..::..String
Either the user work list (if collection of BCUser objects) or the name of group (if collection of BCUserGroup objects) to get.
Return Value
The element with the specified key.Exceptions
Exception | Condition |
---|---|
System.Collections.Generic..::..KeyNotFoundException | When an element with the specified key is not present in the collection. |