Skip to content

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;
end

Members

Properties

Public properties

TypeNameMethods
intCount
Gets the number of parameters in the collection.
get

Methods

Public methods

ReturnsName
voidAdd(string name, object``[] value)
Adds a parameter to the collection.
voidClear()
Clears the collection.
boolContains(string name)
Indicates if a parameter with the specified name is in the collection.
boolRemove(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
TypeNameDescription
stringnameThe name of the parameter.
object``[]valueThe 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
TypeNameDescription
stringnameThe 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
TypeNameDescription
stringnameThe 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