Skip to main content

ICommandParams.ToCollection method

Namespace: NextDesign.Desktop

Description

Converts the contents of the parameter to an object collection.

Return value

  • ICollection

Annotations

About API specification change and migration method in Ver.1.1

From Ver.1.1, the type of this property is changed from IObjectCollection to (C#) ICollection.
If you are using this API, you need to change the corresponding part in the extension along with the version upgrade to Ver.1.1 or later.

Please refer to the following example and change it.

Before

IObjectCollection params = parameters.ToCollection();

After

System.Collections.ICollection params = parameters.ToCollection();