Ryujinx-GtkSharp/gnomevfs/Uri.custom
Mike Kestner 7f3171c814 merge to HEAD of jeroen and friends' work on the 2-4 branch. HEAD
is now tracking Gnome 2.6.

svn path=/trunk/gtk-sharp/; revision=35479
2004-10-29 20:33:07 +00:00

30 lines
595 B
Plaintext

//
// Gnome.Vfs.Uri.custom - Gnome Vfs Uri class customizations
//
// Author: Jeroen Zwartepoorte (jeroen@xs4all.nl)
//
// Copyright (C) 2004 Jeroen Zwartepoorte
//
// This code is inserted after the automatically generated code.
//
public MimeType MimeType {
get {
return new MimeType (this);
}
}
public FileInfo GetFileInfo ()
{
return GetFileInfo (FileInfoOptions.Default);
}
public FileInfo GetFileInfo (FileInfoOptions options) {
return new FileInfo (this, options);
}
public override string ToString ()
{
return ToString (UriHideOptions.None);
}