#region CVS Version Header
/*
* $Id: INntpServerDefinition.cs,v 1.1 2006/09/27 03:37:01 cvsuser Exp $
* Last modified by $Author: cvsuser $
* Last modified at $Date: 2006/09/27 03:37:01 $
* $Revision: 1.1 $
*/
#endregion
namespace NewsComponents{
public interface INntpServerDefinition
{
/// <remarks/>
string Name { get; }
/// <remarks/>
string DefaultIdentity{ get; }
/// <remarks/>
bool PreventDownloadOnRefresh{ get; }
/// <remarks/>
string Server{ get; }
/// <remarks/>
string AuthUser{ get; }
/// <remarks/>
System.Byte[] AuthPassword{ get; }
/// <remarks/>
bool UseSecurePasswordAuthentication{ get; }
/// <remarks/>
int Port{ get; }
/// <remarks>Makes the 'nntp:' a 'nntps:'</remarks>
bool UseSSL{ get; }
/// <remarks/>
int Timeout{ get; }
}
}
|