MFGS ReportingSSRS Parameter Collection
MFGSReportingSSRSParameterCollection Public interface
Description
Describes a collection of parameters passed to a report before rendering.
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph VGWWCoreIEx VGWWCoreIEx.IExMFGSReportingSSRSParameterCollection[[IExMFGSReportingSSRSParameterCollection]] class VGWWCoreIEx.IExMFGSReportingSSRSParameterCollection interfaceStyle; endMembers
Properties
Public properties
| Type | Name | Methods |
|---|---|---|
int | CountGets the number of parameters in the collection. | get |
Methods
Public methods
| Returns | Name |
|---|---|
void | Add(string name, object``[] value)Adds a parameter to the collection. |
void | Clear()Clears the collection. |
bool | Contains(string name)Indicates if a parameter with the specified name is in the collection. |
bool | Remove(string name)Remove a parameter with the specified name from the collection. |
Details
Summary
Describes a collection of parameters passed to a report before rendering.
Methods
Clear
public void Clear()Summary
Clears the collection.
Add
public void Add(string name, object[] value)Arguments
| Type | Name | Description |
|---|---|---|
string | name | The name of the parameter. |
object``[] | value | The value of the parameter. |
Summary
Adds a parameter to the collection.
Remarks
Multiple values can be passed in if the parameter type is multi-value. If a parameter with the same name already exists in the collection, it will be overwritten.
Contains
public bool Contains(string name)Arguments
| Type | Name | Description |
|---|---|---|
string | name | The name of the parameter. |
Summary
Indicates if a parameter with the specified name is in the collection.
Remarks
name is case-insensitive.
Returns
true if the parameter exists; otherwise false.
Remove
public bool Remove(string name)Arguments
| Type | Name | Description |
|---|---|---|
string | name | The name of the parameter. |
Summary
Remove a parameter with the specified name from the collection.
Remarks
name is case-insensitive.
Returns
true if the parameter was found and removed; otherwise false.
Properties
Count
public int Count { get; }Summary
Gets the number of parameters in the collection.
Generated with ModularDoc