CloudinaryDotNet.Actions.BaseParams.AddCustomParam C# (CSharp) Метод

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

Allow passing ad-hoc parameters in each method (mainly to allow work-around solutions until a fix is published)
public AddCustomParam ( string key, string value ) : void
key string The key
value string The value
Результат void
        public void AddCustomParam(string key, string value)
        {
            if (!string.IsNullOrEmpty(value))
            {
                CustomParams.Add(key, value);
            }
        }