AdcsDbPropertyCollectionItem Property |
Gets or sets the value associated with the specified key.
Namespace:
SysadminsLV.PKI.Management.CertificateServices.Database
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public Object this[
string key
] { get; set; }
Public Default Property Item (
key As String
) As Object
Get
Set
public:
virtual property Object^ default[String^ key] {
Object^ get (String^ key) sealed;
void set (String^ key, Object^ value) sealed;
}
abstract Item : Object with get, set
override Item : Object with get, set
Parameters
- key
- Type: SystemString
The key of the value to get or set.
Return Value
Type:
ObjectThe value associated with the specified key. If the specified key is not found, a get
operation throws a
KeyNotFoundException, and a set operation creates a new element
with the specified key.
Implements
IDictionaryTKey, TValueItemTKeySee Also