Cloudinary.TransformationBase.GetFormat C# (CSharp) 메소드

GetFormat() 공개 메소드

public GetFormat ( ) : string
리턴 string
        public string GetFormat()
        {
            if (string.IsNullOrEmpty(Format))
                return "jpg";

            return Format;
        }