DynamicType.Add Method (String, Object)
Adds a key/value pair to the collection.
Namespace: Microsoft.BusinessData.Runtime
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Sub Add ( _
key As String, _
value As Object _
)
'Usage
Dim instance As DynamicType
Dim key As String
Dim value As Object
instance.Add(key, value)
public void Add(
string key,
Object value
)
Parameters
key
Type: System.StringThe key object.
value
Type: System.ObjectThe value object.
Implements
IDictionary<TKey, TValue>.Add(TKey, TValue)
Examples
Code Snippet: Implementing a Custom Connector