Click here to Skip to main content
15,881,248 members
Articles / Web Development / ASP.NET

Thin Client for Microsoft Visual SourceSafe on Pocket PC / SmartPhones

Rate me:
Please Sign up or sign in to vote.
4.21/5 (13 votes)
25 May 2004CPOL9 min read 61.7K   267   24  
Thin client for Microsoft Visual SourceSafe on Pocket PC / SmartPhones targeting .NET Compact Framework.
using System;

namespace VSSClientWebService
{
	/// <summary>
	/// Summary description for AuthenticationInfo.
	/// </summary>
	public class AuthenticationInfo
	{
		public string srcSafeIni;
		public string userName;
		public string password;
		public AuthenticationInfo(string strSrcSafeIni,string strUsername,string strPassword)
		{
			srcSafeIni = strSrcSafeIni;
			userName = strUsername;
			password = strPassword;
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions