//*********************************************************************
// //
// SQL Power Injector 1.2 Copyright (c) 2006-2007 Francois Larouche //
// //
// Author : francois.larouche@sqlpowerinjector.com //
// Web Site: www.sqlpowerinjector.com //
// //
//*******************************************************************//
using System;
namespace SQLPowerInjector{
/// <summary>
/// Summary description for UserAgent.
/// </summary>
public class UserAgent
{
#region Members
#region Private
private int _userAgentID;
private string _userAgentName;
private string _userAgentValue;
#endregion
#endregion
#region Constructor
public UserAgent()
{
_userAgentID = 1;
_userAgentName = "SQL Power Injector 1.2";
_userAgentValue = "SQL Power Injector 1.2 / Security tool (Make sure it is used with the administrator consent)";
}
#endregion
#region Public Attributes
public int UserAgentID
{
get { return _userAgentID; }
set { _userAgentID = value; }
}
public string UserAgentName
{
get { return _userAgentName; }
set { _userAgentName = value; }
}
public string UserAgentValue
{
get { return _userAgentValue; }
set { _userAgentValue = value; }
}
#endregion
}
}
|