Kimono.KMimeType.AllParentMimeTypes C# (CSharp) Method

AllParentMimeTypes() public method

Return all parent mimetypes of this mimetype, direct or indirect. This includes the parent(s) of its parent(s), etc. If this mimetype is an alias, the list also contains the canonical name for this mimetype. The usual reason to use this method is to look for a setting which is stored per mimetype (like PreviewJob does).
public AllParentMimeTypes ( ) : List
return List
        public List<string> AllParentMimeTypes()
        {
            return (List<string>) interceptor.Invoke("allParentMimeTypes", "allParentMimeTypes() const", typeof(List<string>));
        }