forked from i8beef/SAML2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorMessages.Designer.cs
More file actions
468 lines (415 loc) · 19 KB
/
ErrorMessages.Designer.cs
File metadata and controls
468 lines (415 loc) · 19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace SAML2 {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ErrorMessages {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ErrorMessages() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SAML2.ErrorMessages", typeof(ErrorMessages).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Artifact is not from a known identity provider.
/// </summary>
internal static string ArtifactResolveIdentityProviderUnknown {
get {
return ResourceManager.GetString("ArtifactResolveIdentityProviderUnknown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not verify SAML SOAP binding message signature.
/// </summary>
internal static string ArtifactResolveSignatureInvalid {
get {
return ResourceManager.GetString("ArtifactResolveSignatureInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ArtifactResponse did not contain an assertion.
/// </summary>
internal static string ArtifactResponseMissingAssertion {
get {
return ResourceManager.GetString("ArtifactResponseMissingAssertion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unsupported payload message in ArtifactResponse.
/// </summary>
internal static string ArtifactResponseMissingResponse {
get {
return ResourceManager.GetString("ArtifactResponseMissingResponse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not verify artifact response message signature.
/// </summary>
internal static string ArtifactResponseSignatureInvalid {
get {
return ResourceManager.GetString("ArtifactResponseSignatureInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ArtifactResponse status code was invalid, expected {0}.
/// </summary>
internal static string ArtifactResponseStatusCodeInvalid {
get {
return ResourceManager.GetString("ArtifactResponseStatusCodeInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assertion expiration has been exceeded.
/// </summary>
internal static string AssertionExpired {
get {
return ResourceManager.GetString("AssertionExpired", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not process assertion with an unknown identity provider.
/// </summary>
internal static string AssertionIdentityProviderUnknown {
get {
return ResourceManager.GetString("AssertionIdentityProviderUnknown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assertion not found.
/// </summary>
internal static string AssertionNotFound {
get {
return ResourceManager.GetString("AssertionNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assertion with OneTimeUse condition detected more than once.
/// </summary>
internal static string AssertionOneTimeUseExceeded {
get {
return ResourceManager.GetString("AssertionOneTimeUseExceeded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assertion signature is invalid.
/// </summary>
internal static string AssertionSignatureInvalid {
get {
return ResourceManager.GetString("AssertionSignatureInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Attribute query can not be performed when user is not logged in with an identity provider.
/// </summary>
internal static string AttrQueryNoLogin {
get {
return ResourceManager.GetString("AttrQueryNoLogin", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AttrQuery response with status code "{0}" received when "Success" was expected.
/// </summary>
internal static string AttrQueryStatusNotSuccessful {
get {
return ResourceManager.GetString("AttrQueryStatusNotSuccessful", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Certificate with DN "{0}" and thumbprint "{1}" is not valid according to RFC3280.
/// </summary>
internal static string CertificateIsNotRFC3280Valid {
get {
return ResourceManager.GetString("CertificateIsNotRFC3280Valid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Certificate {0} was not found.
/// </summary>
internal static string CertificateNotFound {
get {
return ResourceManager.GetString("CertificateNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Found more than one certificate matching {0}.
/// </summary>
internal static string CertificateNotUnique {
get {
return ResourceManager.GetString("CertificateNotUnique", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Common Domain Cookie identity provider not found in list of known identity providers: {0}.
/// </summary>
internal static string CommonDomainCookieIdentityProviderInvalid {
get {
return ResourceManager.GetString("CommonDomainCookieIdentityProviderInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configuration element <saml2> does not contain an <identityProviders> element.
/// </summary>
internal static string ConfigMissingIdentityProvidersElement {
get {
return ResourceManager.GetString("ConfigMissingIdentityProvidersElement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configuration for <identityProviders> does not contain a "metadata" attribute.
/// </summary>
internal static string ConfigMissingMetadataLocation {
get {
return ResourceManager.GetString("ConfigMissingMetadataLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configuration does not contain <saml2> element.
/// </summary>
internal static string ConfigMissingSaml2Element {
get {
return ResourceManager.GetString("ConfigMissingSaml2Element", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configuration element <saml2> does not contain a <serviceProvider> element.
/// </summary>
internal static string ConfigMissingServiceProviderElement {
get {
return ResourceManager.GetString("ConfigMissingServiceProviderElement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configuration for <serviceProvider> does not contain an "id" attribute.
/// </summary>
internal static string ConfigMissingServiceProviderIdAttribute {
get {
return ResourceManager.GetString("ConfigMissingServiceProviderIdAttribute", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configuration for <serviceProvider> does not contain a <signingCertificate> element.
/// </summary>
internal static string ConfigMissingSigningCertificateElement {
get {
return ResourceManager.GetString("ConfigMissingSigningCertificateElement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configuration has not been initialized..
/// </summary>
internal static string ConfigNotInitialized {
get {
return ResourceManager.GetString("ConfigNotInitialized", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configuration for <serviceProvider> does not contain a SignOn endpoint.
/// </summary>
internal static string ConfigServiceProviderMissingSignOnEndpoint {
get {
return ResourceManager.GetString("ConfigServiceProviderMissingSignOnEndpoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specified <signingCertificate> does not have a private key.
/// </summary>
internal static string ConfigSigningCertificateMissingPrivateKey {
get {
return ResourceManager.GetString("ConfigSigningCertificateMissingPrivateKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The endpoint binding must be one of POST, Redirect, or Artifact.
/// </summary>
internal static string EndpointBindingInvalid {
get {
return ResourceManager.GetString("EndpointBindingInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Empty protocol message id is not allowed.
/// </summary>
internal static string ExpectedInResponseToEmpty {
get {
return ResourceManager.GetString("ExpectedInResponseToEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Session ExpectedInResponseTo missing.
/// </summary>
internal static string ExpectedInResponseToMissing {
get {
return ResourceManager.GetString("ExpectedInResponseToMissing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred.
/// </summary>
internal static string GenericError {
get {
return ResourceManager.GetString("GenericError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified metadata directory "{0}" could not be located.
/// </summary>
internal static string MetadataLocationNotFound {
get {
return ResourceManager.GetString("MetadataLocationNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The "sign"query string parameter could not be parsed.
/// </summary>
internal static string MetadataSignQueryParameterInvalid {
get {
return ResourceManager.GetString("MetadataSignQueryParameterInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Possible replay attack detected, unexpected value {0} for InResponseTo, expected {1}.
/// </summary>
internal static string ReplayAttack {
get {
return ResourceManager.GetString("ReplayAttack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Request signature is invalid.
/// </summary>
internal static string RequestSignatureInvalid {
get {
return ResourceManager.GetString("RequestSignatureInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Request is not signed.
/// </summary>
internal static string RequestSignatureMissing {
get {
return ResourceManager.GetString("RequestSignatureMissing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Received a response message that did not contain an InResponseTo attribute.
/// </summary>
internal static string ResponseMissingInResponseToAttribute {
get {
return ResourceManager.GetString("ResponseMissingInResponseToAttribute", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Response signature is invalid.
/// </summary>
internal static string ResponseSignatureInvalid {
get {
return ResourceManager.GetString("ResponseSignatureInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Response is not signed.
/// </summary>
internal static string ResponseSignatureMissing {
get {
return ResourceManager.GetString("ResponseSignatureMissing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Response with status code NoPassive received. A user cannot be signed in with the IsPassiveFlag set when the user does not have a session with the identity provider.
/// </summary>
internal static string ResponseStatusIsNoPassive {
get {
return ResourceManager.GetString("ResponseStatusIsNoPassive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Response with status code "{0}" received when "Success"was expected.
/// </summary>
internal static string ResponseStatusNotSuccessful {
get {
return ResourceManager.GetString("ResponseStatusNotSuccessful", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to SOAP message did not contain a supported SamlMessage element.
/// </summary>
internal static string SOAPMessageUnsupportedSamlMessage {
get {
return ResourceManager.GetString("SOAPMessageUnsupportedSamlMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to User accessing resource "{0}" without authentication.
/// </summary>
internal static string UnauthenticatedAccess {
get {
return ResourceManager.GetString("UnauthenticatedAccess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoding "{0}" is not supported.
/// </summary>
internal static string UnknownEncoding {
get {
return ResourceManager.GetString("UnknownEncoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown identity provider "{0}".
/// </summary>
internal static string UnknownIdentityProvider {
get {
return ResourceManager.GetString("UnknownIdentityProvider", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to RequestType "{0}" is not supported..
/// </summary>
internal static string UnsupportedRequestType {
get {
return ResourceManager.GetString("UnsupportedRequestType", resourceCulture);
}
}
}
}