Cloudinary.ChainedTransformation.GetFormat C# (CSharp) Метод

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

Returns the Format, for a Chained transformation this returns the format of the first transformation
public GetFormat ( ) : string
Результат string
        public string GetFormat()
        {
            if (_transformations.Any())
                return _transformations.First().GetFormat();

            return "jpg";
        }