dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceType Enumeration

SalesforceType Enumeration
Specifies the data type of a field or a parameter.
Syntax
'Declaration
 
Public Enum SalesforceType 
   Inherits System.Enum
   Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
 
Members
MemberDescription
BinaryThe Salesforce BINARY type. Represented as the System.Byte[].
BooleanA simple type representing Boolean values of true or false. Corresponds to the Salesforce CHECKBOX type.
ByteA set of bits. Represented as the System.Byte.
DateA Salesforce DATE data type. Represented as the System.DateTime.
DateTimeA Salesforce DATETIME data type. Represented as the System.DateTime.
DoubleDouble values. Corresponds to the Salesforce NUMBER, CURRENCY, or PERCENT type. Represented as the System.Double.
IntInteger type. Corresponds to the Salesforce INT type.
StringCharacter strings. Represented as the System.String.
TimeA Salesforce TIME data type. Represented as the System.DateTime.
Remarks
This table shows mappings between SalesforceType values, Salesforce.com or Database.com data types, Microsoft .NET Framework types.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Devart.Data.Salesforce.SalesforceType

See Also