//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
using System.Collections;
using System.ComponentModel;
using System.Web;
using System.Web.UI;
public class SiteMapNodeItemEventArgs : EventArgs {
private SiteMapNodeItem _item;
///
/// Initializes a new instance of the class.
///
public SiteMapNodeItemEventArgs(SiteMapNodeItem item) {
this._item = item;
}
///
/// Gets the associated with the event.
///
public SiteMapNodeItem Item {
get {
return _item;
}
}
}
}