Kimono.KMimeType.IsBufferBinaryData C# (CSharp) Method

IsBufferBinaryData() public static method

Returns whether a buffer 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 IsBufferBinaryData ( Qyoto.QByteArray data ) : bool
data Qyoto.QByteArray
return bool
        public static bool IsBufferBinaryData(QByteArray data)
        {
            return (bool) staticInterceptor.Invoke("isBufferBinaryData#", "isBufferBinaryData(const QByteArray&)", typeof(bool), typeof(QByteArray), data);
        }