dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceParameter Class / SalesforceParameter Constructor / SalesforceParameter Constructor()
Example

In This Topic
    SalesforceParameter Constructor()
    In This Topic
    Initializes a new instance of the SalesforceParameter class.
    Syntax
    'Declaration
     
    Public Function New()
    public SalesforceParameter()
    Remarks
    The base constructor initializes all fields to their default values.
    Example
    The following example creates a new SalesforceParameter and sets some of its properties.
    public void CreateSalesforceParameter()
    {
      SalesforceParameter myParameter = new SalesforceParameter();
      myParameter.ParameterName = "DName";
      myParameter.SalesforceType = SalesforceType.VarChar;
      myParameter.Direction = ParameterDirection.Input;
      myParameter.Size = 15;
    }
    Public Sub CreateSalesforceParameter()
      Dim myParameter As New SalesforceParameter()
      myParameter.ParameterName = "DName"
      myParameter.SalesforceType = SalesforceType.VarChar
      myParameter.Direction = ParameterDirection.Input
      myParameter.Size = 15
    End Sub
    See Also