Kimono.KMimeType.Is C# (CSharp) Method

Is() public method

Do not use name()=="somename" anymore, to check for a given mimetype. For mimetype inheritance to work, use is("somename") instead. Warning, do not use inherits(), that's the servicetype inheritance concept! is() also supports mimetype aliases.
public Is ( string mimeTypeName ) : bool
mimeTypeName string
return bool
        public bool Is(string mimeTypeName)
        {
            return (bool) interceptor.Invoke("is$", "is(const QString&) const", typeof(bool), typeof(string), mimeTypeName);
        }