Наследование: System.Web.Services.Protocols.SoapHttpClientProtocol
Пример #1
0
		public ConfluenceClient(string user, string password)
		{
			if (String.IsNullOrEmpty(user))
				throw new ArgumentNullException("user");

			if (String.IsNullOrEmpty(password))
				throw new ArgumentNullException("password");

			m_client = new ConfluenceSoapServiceService();
			m_token = m_client.login(user, password);
		}