public override bool CreateNote(NoteSystem system, NoteSource source)
 {
     if (source.MatchesFileType(".whlnk"))
     {
         string         name         = "get name from .whlnk file;";
         HTTPNoteSource linkedSource = new HTTPNoteSource(system);
         linkedSource.SetName(name);
         SetFileTypeFromMIMEType(linkedSource);
         system.CreateNote(linkedSource);
         return(true);
     }
     return(false);
 }
 private void SetFileTypeFromMIMEType(HTTPNoteSource link)
 {
 }