namespace Neo.Afx.Services.Integration
{
///
/// The connection type.
///
public enum ConnectionTypeEnum : short
{
///
/// SqlServer
///
SqlServer = 1,
///
/// OleDb
///
OleDb,
///
/// Odbc
///
Odbc,
///
/// Oracle
///
Oracle,
///
/// Web
///
Web
}
///
/// The command type
///
public enum CommandTypeEnum : short
{
///
/// Text
///
Text = 1,
///
/// StoredProcedure
///
StoredProcedure,
///
/// Get
///
Get,
///
/// Post
///
Post,
///
/// Post
///
StoredProcedureExec
}
///
/// The authentication type.
///
public enum AuthTypeEnum : short
{
///
/// Anonymous
///
Anonymous = 1,
///
/// NetworkCredential
///
NetworkCredential
}
///
/// The data source field.
///
public enum DataSourceField
{
///
/// The ID field.
///
DataSourceID,
///
/// The name field.
///
DataSourceName,
///
/// The command type field.
///
CommandType,
///
/// The connection string field.
///
ConnectionString,
///
/// The connection type field.
///
ConnectionType,
///
/// The request query field.
///
RequestQuery,
///
/// The request headers field.
///
RequestHeaders,
///
/// The response XSL field.
///
ResponseXsl,
///
/// The entity schema field.
///
EntitySchema,
///
/// The cache enabled field.
///
IsCacheEnabled,
///
/// The cache minutes field.
///
CacheMinutes,
///
/// The authentication type field.
///
AuthType,
///
/// The authentication domain field.
///
AuthDomain,
///
/// The authentication user name field.
///
AuthUser,
///
/// The authentication password field.
///
AuthPassword
}
}