"Fossies" - the Fresh Open Source Software Archive

Member "csharp/UnZipDLLPrintMessageEventArgs.cs" (30 Apr 2005, 1125 Bytes) of package /windows/misc/unz600dn.zip:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C# source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "UnZipDLLPrintMessageEventArgs.cs" see the Fossies "Dox" file reference documentation.

    1 #region README
    2 
    3     //_____________________________________________________________________________
    4     //
    5     //Sample C# code, .NET Framework 1.1, contributed to the Info-Zip project by
    6     //Adrian Maull, April 2005.
    7     //
    8     //If you have questions or comments, contact me at adrian.maull@sprintpcs.com.  Though
    9     //I will try to respond to coments/questions, I do not guarantee such response.
   10     //
   11     //THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
   12     //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
   13     //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
   14     //PARTICULAR PURPOSE.
   15     //
   16     //_____________________________________________________________________________
   17 
   18 
   19 #endregion
   20 
   21 using System;
   22 
   23 namespace CSharpInfoZip_UnZipSample
   24 {
   25     /// <summary>
   26     /// Summary description for UnZipDLLPrintMessageEventArgs.
   27     /// </summary>
   28     public class UnZipDLLPrintMessageEventArgs : EventArgs
   29     {
   30         private string m_PrintMessage = string.Empty;
   31 
   32         public UnZipDLLPrintMessageEventArgs(string msg)
   33         {
   34             m_PrintMessage = msg;
   35         }
   36 
   37         public string PrintMessage
   38         {
   39             get {return m_PrintMessage;}
   40         }
   41     }
   42 }