ModelDataExtensionsCopyToDictionary(IListCustomAttributeData, IDictionaryGuid, CustomAttributeValue) Method |
Copies list of pairs to dictionary.
Namespace: Dundas.BI.WebApi.ModelsAssembly: Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxpublic static void CopyToDictionary(
this IList<CustomAttributeData> source,
IDictionary<Guid, CustomAttributeValue> destination
)
<ExtensionAttribute>
Public Shared Sub CopyToDictionary (
source As IList(Of CustomAttributeData),
destination As IDictionary(Of Guid, CustomAttributeValue)
)
public:
[ExtensionAttribute]
static void CopyToDictionary(
IList<CustomAttributeData^>^ source,
IDictionary<Guid, CustomAttributeValue^>^ destination
)
[<ExtensionAttribute>]
static member CopyToDictionary :
source : IList<CustomAttributeData> *
destination : IDictionary<Guid, CustomAttributeValue> -> unit Parameters
- source IListCustomAttributeData
- The source.
- destination IDictionaryGuid, CustomAttributeValue
- The destination.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IListCustomAttributeData. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also