You've already forked linux-packaging-mono
							
							
		
			
				
	
	
		
			33 lines
		
	
	
		
			633 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			633 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| // HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
 | |
| using System;
 | |
| using System.Text;
 | |
| 
 | |
| namespace HtmlAgilityPack
 | |
| {
 | |
|     internal class EncodingFoundException : Exception
 | |
|     {
 | |
|         #region Fields
 | |
| 
 | |
|         private Encoding _encoding;
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         #region Constructors
 | |
| 
 | |
|         internal EncodingFoundException(Encoding encoding)
 | |
|         {
 | |
|             _encoding = encoding;
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         #region Properties
 | |
| 
 | |
|         internal Encoding Encoding
 | |
|         {
 | |
|             get { return _encoding; }
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
|     }
 | |
| } |