Example #1
0
        public OrganizationServiceContext GetOrganisationContext(string orgUrl)
        {
            CrmConnection connection = new CrmConnection(orgUrl);

            return(connection.GetContext());
        }
Example #2
0
 public OrganizationServiceContext GetOrganisationContext(string orgUrl, string username, string password)
 {
     CrmConnection connection = new CrmConnection(orgUrl, username, password);
     return connection.GetContext();
 }
Example #3
0
        public OrganizationServiceContext GetOrganisationContext(string orgUrl, string username, string password)
        {
            CrmConnection connection = new CrmConnection(orgUrl, username, password);

            return(connection.GetContext());
        }
Example #4
0
 public OrganizationServiceContext GetOrganisationContext(string orgUrl)
 {
     CrmConnection connection = new CrmConnection(orgUrl);
     return connection.GetContext();
 }