namespace NetVips;
///
/// The abstract base Connection class.
///
public abstract class Connection : VipsObject
{
///
internal Connection(nint pointer) : base(pointer)
{
}
///
/// Get the filename associated with a connection. Return if there
/// is no associated file.
///
/// The filename associated with this connection or .
public string GetFileName()
{
return Internal.VipsConnection.FileName(this).ToUtf8String();
}
///
/// Make a human-readable name for a connection suitable for error
/// messages.
///
/// The human-readable name for this connection.
public string GetNick()
{
return Internal.VipsConnection.Nick(this).ToUtf8String();
}
}