CCNet.Build.Confluence.CachedConfluenceClient.CachedConfluenceClient C# (CSharp) Method

CachedConfluenceClient() public method

public CachedConfluenceClient ( string user, string password, string cachePath ) : System
user string
password string
cachePath string
return System
		public CachedConfluenceClient(string user, string password, string cachePath)
			: base(user, password)
		{
			if (String.IsNullOrEmpty(cachePath))
				throw new ArgumentNullException("cachePath");

			m_cachePath = cachePath;
			m_cachePath.CreateDirectoryIfNotExists();
		}