//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web {
using System.Collections;
///
///
public sealed class TraceContextEventArgs : EventArgs {
private ICollection _records;
public TraceContextEventArgs(ICollection records) {
_records = records;
}
///
/// Gets the trace records for this event
///
public ICollection TraceRecords {
get {
return _records;
}
}
}
}