namespace AsterNET.Manager.Event
{
///
/// A DBGetResponseEvent is sent in response to a DBGetAction and contains the entry that was queried.
/// Available since Asterisk 1.2
///
///
public class DBGetResponseEvent : ResponseEvent
{
private string family;
private string key;
private string val;
///
/// Get/Set the family of the database entry that was queried.
///
public string Family
{
get { return this.family; }
set { this.family = value; }
}
///
/// Get/Set the key of the database entry that was queried.
///
public string Key
{
get { return this.key; }
set { this.key = value; }
}
///
/// Get/Set the value of the database entry that was queried.
///
public string Val
{
get { return val; }
set { this.val = value; }
}
public DBGetResponseEvent(ManagerConnection source)
: base(source)
{
}
}
}