mirror of
				https://github.com/snltty/linker.git
				synced 2025-10-31 20:43:00 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			477 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			477 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Net;
 | |
| 
 | |
| namespace cmonitor.plugins.viewer.report
 | |
| {
 | |
|     public sealed class ViewerMacOS : IViewer
 | |
|     {
 | |
|         public void Open(bool value, ParamInfo info)
 | |
|         {
 | |
|         }
 | |
|         public string GetConnectString()
 | |
|         {
 | |
|             return string.Empty;
 | |
|         }
 | |
|         public void SetConnectString(string connectStr)
 | |
|         {
 | |
| 
 | |
|         }
 | |
| 
 | |
|         public string GetConnectEP(string connectStr)
 | |
|         {
 | |
|             return string.Empty;
 | |
|         }
 | |
|     }
 | |
| }
 | 
