Ryujinx-GtkSharp/gnomevfs/Uri.custom

30 lines
595 B
Plaintext
Raw Normal View History

//
// 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);
}