Kimono.KMimeType.AllParentMimeTypes C# (CSharp) 메소드

AllParentMimeTypes() 공개 메소드

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
리턴 List
        public List<string> AllParentMimeTypes()
        {
            return (List<string>) interceptor.Invoke("allParentMimeTypes", "allParentMimeTypes() const", typeof(List<string>));
        }