Acid.PuntoPagos.Sdk.PuntoPago.SetSecretCode C# (CSharp) Метод

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

Set the Client Secret Code of Punto Pagos
public SetSecretCode ( string secretCode ) : PuntoPago
secretCode string
Результат PuntoPago
        public PuntoPago SetSecretCode(string secretCode)
        {
            if (string.IsNullOrEmpty(secretCode))
                throw new ArgumentNullException("secretCode", "The secretCode can not be null or empty ");
            _configuration.ClientSecret = secretCode;
            return this;
        }