ModelDataExtensions.CopyToParameter Method |
Copies to parameter.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntaxpublic static void CopyToParameter(
this IList<ParameterData> source,
IReadOnlyList<Parameter> destination
)
<ExtensionAttribute>
Public Shared Sub CopyToParameter (
source As IList(Of ParameterData),
destination As IReadOnlyList(Of Parameter)
)
public:
[ExtensionAttribute]
static void CopyToParameter(
IList<ParameterData^>^ source,
IReadOnlyList<Parameter^>^ destination
)
[<ExtensionAttribute>]
static member CopyToParameter :
source : IList<ParameterData> *
destination : IReadOnlyList<Parameter> -> unit
Parameters
- source
- Type: System.Collections.Generic.IList<ParameterData>
The source. - destination
- Type: System.Collections.Generic.IReadOnlyList<Parameter>
The destination.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IList<ParameterData>. 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