C# Class Cube.XRM.Framework.Core.Service

Class Service.
Mostra file Open project: bkanlica/CubeXrmFramework Class Usage Examples

Private Properties

Property Type Description
isValidConnectionString System.Boolean

Public Methods

Method Description
GetService ( string connectionString ) : System.Result

Takes service information and create a OrganizationService object

GetService ( string URL, string UserName, string Password ) : System.Result

Gets the service.

Service ( IDetailedLog _logger ) : System

Initializes a new instance of the Service class.

Private Methods

Method Description
isValidConnectionString ( String connectionString ) : System.Boolean

Verifies if a connection string is valid for Microsoft Dynamics CRM.

Method Details

GetService() public method

Takes service information and create a OrganizationService object
public GetService ( string connectionString ) : System.Result
connectionString string The connection string.
return System.Result

GetService() public method

Gets the service.
public GetService ( string URL, string UserName, string Password ) : System.Result
URL string The URL.
UserName string Name of the user.
Password string The password.
return System.Result

Service() public method

Initializes a new instance of the Service class.
public Service ( IDetailedLog _logger ) : System
_logger IDetailedLog The _logger.
return System