Kimono.KMimeType.MimeType C# (CSharp) Method

MimeType() public static method

Retrieve a pointer to the mime type name . Very important: Don't store the result in a KMimeType ! Also note that you get a new KMimeType pointer every time you call this. Don't ever write code that compares mimetype pointers, compare names instead. name="name" the name of the mime type
public static MimeType ( string name, KMimeType options ) : KMimeType
name string
options KMimeType
return KMimeType
        public static KMimeType MimeType(string name, KMimeType.FindByNameOption options)
        {
            return (KMimeType) staticInterceptor.Invoke("mimeType$$", "mimeType(const QString&, KMimeType::FindByNameOption)", typeof(KMimeType), typeof(string), name, typeof(KMimeType.FindByNameOption), options);
        }

Same methods

KMimeType::MimeType ( string name ) : KMimeType