/*
* TickEventHandler.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
namespace DTS.Serialization
{ ///
///
/// Generic handler for File.Writer tick events.
///
///
///
/// The responsible for issuing this event.
///
///
///
/// The task percentage completed as of this tick.
///
///
public delegate void TickEventHandler(object sender, double percentageComplete);
}