Open this page in the API Guide

ModelDataExtensions.CopyToParameterValueCollection Method

Copies a parameter value from a list onto an existing collection.

Namespace:  Dundas.BI.WebApi.Models
Assembly:  Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
public static void CopyToParameterValueCollection(
	this IList<ParameterValue> source,
	ICollection<ParameterValue> destination
)

Parameters

source
Type: System.Collections.Generic.IList<ParameterValue>
The source object that has the list of 'new' values.
destination
Type: System.Collections.Generic.ICollection<ParameterValue>
The destination list that is to receive the values.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IList<ParameterValue>. 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