NameObjectCollectionItem(String) Property
Namespace: DevCase.Runtime.CollectionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public Object this[
string name
] { get; set; }
Public Default Property Item (
name As String
) As Object
Get
Set
Dim instance As NameObjectCollection
Dim name As String
Dim value As Object
value = instance(name)
instance(name) = value
public:
property Object^ default[String^ name] {
Object^ get (String^ name);
void set (String^ name, Object^ value);
}
member Item : Object with get, set
No code example is currently available or this language may not be supported.
- name String
-
The String key of the entry to locate. The key can be null.
Object
A
Object that contains the comma-separated list of values associated with
the specified key, if found; otherwise, null.
NotSupportedException
|
The collection is read-only and the operation attempts to modify the collection.
|