SecurityNegotiationConstants.cs 484 B

1234567891011121314
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel.Security
  5. {
  6. static class SecurityNegotiationConstants
  7. {
  8. // Specifies the size (in bits) of the authenticator
  9. internal const int NegotiationAuthenticatorSize = 256;
  10. internal const string NegotiationFault = "NegotiationFault";
  11. }
  12. }