ApplicationServicesStrings.cs 2.7 KB

1234567891011121314151617181920212223242526272829
  1. namespace System.Web
  2. {
  3. internal class ApplicationServicesStrings
  4. {
  5. internal const string Can_not_use_encrypted_passwords_with_autogen_keys = "You must specify a non-autogenerated machine key to store passwords in the encrypted format. Either specify a different passwordFormat, or change the machineKey configuration to use a non-autogenerated decryption key.";
  6. internal const string CustomLoader_ForbiddenByHost = "The host forbids the use of custom loaders.";
  7. internal const string CustomLoader_MustImplementICustomLoader = "The provided type '{0}' must implement the ICustomLoader interface.";
  8. internal const string CustomLoader_NoAttributeFound = "The assembly '{0}' did not contain an assembly-level CustomLoaderAttribute.";
  9. internal const string CustomLoader_NotInFullTrust = "Custom loaders can only be used by fully-trusted applications (<trust level=\"Full\" />).";
  10. internal const string Membership_DuplicateEmail = "The E-mail address is already in use.";
  11. internal const string Membership_DuplicateProviderUserKey = "The provider user key is already in use.";
  12. internal const string Membership_DuplicateUserName = "The username is already in use.";
  13. internal const string Membership_InvalidAnswer = "The password-answer supplied is invalid.";
  14. internal const string Membership_InvalidEmail = "The E-mail supplied is invalid.";
  15. internal const string Membership_InvalidPassword = "The password supplied is invalid. Passwords must conform to the password strength requirements configured for the default provider.";
  16. internal const string Membership_InvalidProviderUserKey = "The provider user key supplied is invalid. It must be of type System.Guid.";
  17. internal const string Membership_InvalidQuestion = "The password-question supplied is invalid. Note that the current provider configuration requires a valid password question and answer. As a result, a CreateUser overload that accepts question and answer parameters must also be used.";
  18. internal const string Membership_InvalidUserName = "The username supplied is invalid.";
  19. internal const string Membership_no_error = "No Error.";
  20. internal const string Membership_provider_name_invalid = "The membership provider name specified is invalid.";
  21. internal const string Membership_UserRejected = "The user was rejected.";
  22. internal const string Parameter_can_not_be_empty = "The parameter '{0}' must not be empty.";
  23. internal const string Platform_not_supported = "This member is not supported on the .NET Framework Client Profile.";
  24. internal const string Provider_Error = "The Provider encountered an unknown error.";
  25. internal const string Provider_must_implement_type = "Provider must implement the class '{0}'.";
  26. }
  27. }