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

Developing Next Generation Smart Clients using .NET 2.0 working with Existing .NET 1.1 SOA-based XML Web Services

Rate me:
Please Sign up or sign in to vote.
4.96/5 (134 votes)
16 Aug 200540 min read 1.2M   3.9K   462  
Comprehensive guide to development of .NET 2.0 Smart Clients working with existing Service Oriented Architecture based XML web services, fully utilizing the Enterprise Library
// WARNING:
// This file generated by the Microsoft DataWarehouse String Resource Tool 1.13.5000.0
// from information in SR.strings.   
// DO NO MODIFY THIS FILE'S CONTENTS, THEY WILL BE OVERWRITTEN
//
namespace Microsoft.Practices.EnterpriseLibrary.Tools.SecurityDatabaseConsole
{
	using System;
	using System.Resources;
	using System.Globalization;

	internal class SR
	{
		public static string MustCreateRole
		{
			get { return Keys.GetString( Keys.MustCreateRole ); }
		}
		public static string MustSelectUserToAdd
		{
			get { return Keys.GetString( Keys.MustSelectUserToAdd ); }
		}
		public static string MustSelectUserToRemove
		{
			get { return Keys.GetString( Keys.MustSelectUserToRemove ); }
		}
		public static string MustSelectUserToDelete
		{
			get { return Keys.GetString( Keys.MustSelectUserToDelete ); }
		}
		public static string MustSelectRoleToDelete
		{
			get { return Keys.GetString( Keys.MustSelectRoleToDelete ); }
		}
		public static string DeleteRoleConfirmation
		{
			get { return Keys.GetString( Keys.DeleteRoleConfirmation ); }
		}
		public static string UsersInRole (string role)
		{
			return Keys.GetString( Keys.UsersInRole, role );
		}
		public static string PasswordsMustMatch
		{
			get { return Keys.GetString( Keys.PasswordsMustMatch ); }
		}
		public static string UserAlreadyExists
		{
			get { return Keys.GetString( Keys.UserAlreadyExists ); }
		}
		public static string RoleAlreadyExists
		{
			get { return Keys.GetString( Keys.RoleAlreadyExists ); }
		}
		public static string UnhandledException
		{
			get { return Keys.GetString( Keys.UnhandledException ); }
		}
		public static string NewPasswordLabel
		{
			get { return Keys.GetString( Keys.NewPasswordLabel ); }
		}
		public static string DeleteUserConfirmation
		{
			get { return Keys.GetString( Keys.DeleteUserConfirmation ); }
		}
		public static string DeleteUserConfirmationCaption
		{
			get { return Keys.GetString( Keys.DeleteUserConfirmationCaption ); }
		}
		public static string DatabaseConnectionError
		{
			get { return Keys.GetString( Keys.DatabaseConnectionError ); }
		}
		public static string NoDatabaseExceptionMessage (string paragraphSeparator1, string paragraphSeparator2, string paragraphSeparator3, string exceptionMessage)
		{
			return Keys.GetString( Keys.NoDatabaseExceptionMessage, paragraphSeparator1, paragraphSeparator2, paragraphSeparator3, exceptionMessage );
		}

		internal class Keys 
		{
			static ResourceManager resourceManager = 
				new ResourceManager("Microsoft.Practices.EnterpriseLibrary.Tools.SecurityDatabaseConsole.SR", typeof(Microsoft.Practices.EnterpriseLibrary.Tools.SecurityDatabaseConsole.SR).Module.Assembly );

			public static string GetString( string key )
			{
				return resourceManager.GetString( key, CultureInfo.CurrentUICulture );
			}
			public static string GetString( string key, params object[] args )
			{
				string msg = resourceManager.GetString( key, CultureInfo.CurrentUICulture );
				msg = string.Format( msg, args );
				return msg;
			}

			public const string MustCreateRole = "MustCreateRole";
			public const string MustSelectUserToAdd = "MustSelectUserToAdd";
			public const string MustSelectUserToRemove = "MustSelectUserToRemove";
			public const string MustSelectUserToDelete = "MustSelectUserToDelete";
			public const string MustSelectRoleToDelete = "MustSelectRoleToDelete";
			public const string DeleteRoleConfirmation = "DeleteRoleConfirmation";
			public const string UsersInRole = "UsersInRole";
			public const string PasswordsMustMatch = "PasswordsMustMatch";
			public const string UserAlreadyExists = "UserAlreadyExists";
			public const string RoleAlreadyExists = "RoleAlreadyExists";
			public const string UnhandledException = "UnhandledException";
			public const string NewPasswordLabel = "NewPasswordLabel";
			public const string DeleteUserConfirmation = "DeleteUserConfirmation";
			public const string DeleteUserConfirmationCaption = "DeleteUserConfirmationCaption";
			public const string DatabaseConnectionError = "DatabaseConnectionError";
			public const string NoDatabaseExceptionMessage = "NoDatabaseExceptionMessage";
		}


	}
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions