Microsoft.Activities.Extensions |
WorkflowArguments..::..Item Property |
WorkflowArguments Class See Also Send Feedback |
Gets or sets the element with the specified key.
Namespace: Microsoft.Activities.Extensions
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)
Syntax
C# |
---|
public Object this[ string key ] { get; set; } |
Visual Basic |
---|
Public Default Property Item ( _ key As String _ ) As Object Get Set |
Visual C++ |
---|
public: virtual property Object^ default[String^ key] { Object^ get (String^ key) sealed; void set (String^ key, Object^ value) sealed; } |
Parameters
- key
- Type: System..::..String
The key of the element to get or set.
Return Value
The element with the specified key.Implements
IDictionary<(Of <(<'TKey, TValue>)>)>..::..Item[([( TKey])])Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | key is null. |
System.Collections.Generic..::..KeyNotFoundException | The property is retrieved and key is not found. |
System..::..NotSupportedException | The property is set and the IDictionary<(Of <(<'TKey, TValue>)>)> is read-only. |