#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Provides data for the UriDropped event
///
public class UriDroppedEventArgs : EventArgs
{
#region Fields
// I decided to leave it a string because I can't really
// be sure it is a Uri.
private string _uriText;
#endregion Fields
#region Properties
///
/// Text of the dropped file or uri
///
public string UriText
{
get { return _uriText; }
set { _uriText = value; }
}
#endregion Properties
#region Constructors
///
/// Initializes a new instance of the UriDroppedEventArgs class.
///
/// Text of the dropped file or uri
public UriDroppedEventArgs(string uriText)
{
_uriText = uriText;
}
#endregion Constructors
}
}