Overload | Description |
---|---|
ReportParameter Constructor(String,Object) | Initializes a new instance of the ReportParameter class with a single value. |
ReportParameter Constructor(String,ICollection<Object>) | Initializes a new instance of the ReportParameter class with multiple values. This snippet shows how to create a new ReportParameter. List<object> values = new List<object> { 1, 2, 3, "Hello", DateTime.Now }; ReportParameter parameter = new ReportParameter("MyParameter", values); |
ReportParameter Constructor(String) | Initializes a new instance of the ReportParameter class without any values. |