7f3171c814
is now tracking Gnome 2.6. svn path=/trunk/gtk-sharp/; revision=35479
29 lines
595 B
Text
29 lines
595 B
Text
//
|
|
// 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);
|
|
}
|