Kimono.KMimeType.IsBinaryData C# (CSharp) Method

IsBinaryData() public static method

Returns whether a file has an internal format that is not human readable. This is much more generic than "not mime.Is(text/plain)". Many application file formats (like rtf and postscript) are based on text, but text that the user should rarely ever see.
public static IsBinaryData ( string fileName ) : bool
fileName string
return bool
        public static bool IsBinaryData(string fileName)
        {
            return (bool) staticInterceptor.Invoke("isBinaryData$", "isBinaryData(const QString&)", typeof(bool), typeof(string), fileName);
        }