BusinessComponents.OperationsComponent.Authentification C# (CSharp) Метод

Authentification() публичный статический Метод

Method used for trying to access the current user root document, if the credentials are fine then an xml response will be brought back else an exception will be thrown
public static Authentification ( CredentialsDetails credentialsDetail, string &strRequest, string &strResponse ) : void
credentialsDetail BusinessObjects.CredentialsDetails An object that encapsulates the Constant Contact credentials
strRequest string The request string representation
strResponse string The response string representation
Результат void
        public static void Authentification(CredentialsDetails credentialsDetail,
            out string strRequest, out string strResponse)
        {
            var contactURI = "https://api.constantcontact.com/ws/customers/" + credentialsDetail.User + "/";

            ApiCallComponent.CallServiceGet(credentialsDetail, contactURI, out strRequest, out strResponse);
        }