BalihooBlipDotNet.Blip.Blip C# (CSharp) Метод

Blip() публичный Метод

The Blip constructor.
public Blip ( string apiKey, string secretKey, string endpoint = "https://blip.balihoo-cloud.com" ) : System
apiKey string The key used to access the BLIP API.
secretKey string The secret key used to access the BLIP API.
endpoint string The BLIP endpoint to target. Defaults to Balihoo's production environment.
Результат System
        public Blip(string apiKey, string secretKey, string endpoint="https://blip.balihoo-cloud.com")
        {
            Credentials = Convert.ToBase64String(Encoding.ASCII.GetBytes($"{apiKey}:{secretKey}"));
            Endpoint = endpoint.TrimEnd('/');
        }