Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates a new AdomdParameter object with the specified property name and value, and adds it to the collection.
Namespace:  Microsoft.AnalysisServices.AdomdServer
Assembly:  msmgdsrv (in msmgdsrv.dll)
Syntax
'Declaration
Public Function Add ( _
    parameterName As String, _
    value As Object _
) As AdomdParameter
'Usage
Dim instance As AdomdParameterCollection 
Dim parameterName As String 
Dim value As Object 
Dim returnValue As AdomdParameter 
returnValue = instance.Add(parameterName, _
    value)
public AdomdParameter Add(
    string parameterName,
    Object value
)
public:
AdomdParameter^ Add(
    String^ parameterName, 
    Object^ value
)
member Add : 
        parameterName:string * 
        value:Object -> AdomdParameter
public function Add(
    parameterName : String, 
    value : Object
) : AdomdParameter
Parameters
- parameterName
 Type: String
 The name of the AdomdParameter to add.
- value
 Type: Object
 The value of the AdomdParameter object to be created.
Return Value
Type: Microsoft.AnalysisServices.AdomdServer.AdomdParameter
An instance of a AdomdParameter object.