kolibrios-gitea/programs/fs/unzip60/windll/csharp/UnZipDLLPrintMessageEventArgs.cs
siemargl e9b1c1bac6 unzip initial commit
git-svn-id: svn://kolibrios.org@6725 a494cfbc-eb01-0410-851d-a64ba20cac60
2016-11-18 13:40:05 +00:00

43 lines
1.1 KiB
C#

#region README
//_____________________________________________________________________________
//
//Sample C# code, .NET Framework 1.1, contributed to the Info-Zip project by
//Adrian Maull, April 2005.
//
//If you have questions or comments, contact me at adrian.maull@sprintpcs.com. Though
//I will try to respond to coments/questions, I do not guarantee such response.
//
//THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
//KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
//IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
//PARTICULAR PURPOSE.
//
//_____________________________________________________________________________
#endregion
using System;
namespace CSharpInfoZip_UnZipSample
{
/// <summary>
/// Summary description for UnZipDLLPrintMessageEventArgs.
/// </summary>
public class UnZipDLLPrintMessageEventArgs : EventArgs
{
private string m_PrintMessage = string.Empty;
public UnZipDLLPrintMessageEventArgs(string msg)
{
m_PrintMessage = msg;
}
public string PrintMessage
{
get {return m_PrintMessage;}
}
}
}