combit List & Label 29 - .NET Help
combit.Reporting.DataProviders Namespace / SalesforceDataProvider Class / SalesforceDataProvider Constructor
Username of Salesforce account.
Password of Salesforce account (Salesforce Document: the user must add their security token to the end of their password in order to log in).
If you want to not load all Salesforce sObjects, pass a List of names of required sObjects. Default value is null and will load the whole database.
Salesforce Login Url. Default value is "https://login.salesforce.com/services/oauth2/token".


In This Topic
    SalesforceDataProvider Constructor
    In This Topic
    Salesforce SOAP API data provider.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal username As String, _
       ByVal password As String, _
       Optional ByVal sObjects() As String, _
       Optional ByVal loginUrl As String _
    )
    public SalesforceDataProvider( 
       string username,
       string password,
       string[] sObjects,
       string loginUrl
    )
    public:
    SalesforceDataProvider( 
       String^ username,
       String^ password,
       array<String^>^ sObjects,
       String^ loginUrl
    )

    Parameters

    username
    Username of Salesforce account.
    password
    Password of Salesforce account (Salesforce Document: the user must add their security token to the end of their password in order to log in).
    sObjects
    If you want to not load all Salesforce sObjects, pass a List of names of required sObjects. Default value is null and will load the whole database.
    loginUrl
    Salesforce Login Url. Default value is "https://login.salesforce.com/services/oauth2/token".
    Requirements

    Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
    .NET: .NET Framework 4.8, .NET 6, .NET 7, .NET 8

    See Also