forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSRResources.Designer.cs
More file actions
1282 lines (1139 loc) · 57.6 KB
/
Copy pathSRResources.Designer.cs
File metadata and controls
1282 lines (1139 loc) · 57.6 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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34011
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace System.Web.Http.Properties {
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", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class SRResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal SRResources() {
}
/// <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("System.Web.Http.Properties.SRResources", typeof(SRResources).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 The method '{0}' on type '{1}' returned a Task instance even though it is not an asynchronous method..
/// </summary>
internal static string ActionExecutor_UnexpectedTaskInstance {
get {
return ResourceManager.GetString("ActionExecutor_UnexpectedTaskInstance", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The method '{0}' on type '{1}' returned an instance of '{2}'. Make sure to call Unwrap on the returned value to avoid unobserved faulted Task..
/// </summary>
internal static string ActionExecutor_WrappedTaskInstance {
get {
return ResourceManager.GetString("ActionExecutor_WrappedTaskInstance", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to After calling {0}.OnActionExecuted, the HttpActionExecutedContext properties Result and Exception were both null. At least one of these values must be non-null. To provide a new response, please set the Result object; to indicate an error, please throw an exception..
/// </summary>
internal static string ActionFilterAttribute_MustSupplyResponseOrException {
get {
return ResourceManager.GetString("ActionFilterAttribute_MustSupplyResponseOrException", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} on type {1}.
/// </summary>
internal static string ActionSelector_AmbiguousMatchType {
get {
return ResourceManager.GetString("ActionSelector_AmbiguousMatchType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ApiController.Request must not be null..
/// </summary>
internal static string ApiController_RequestMustNotBeNull {
get {
return ResourceManager.GetString("ApiController_RequestMustNotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An object of type '{0}' was returned where an instance of IHttpActionResult was expected..
/// </summary>
internal static string ApiControllerActionInvoker_InvalidHttpActionResult {
get {
return ResourceManager.GetString("ApiControllerActionInvoker_InvalidHttpActionResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A null value was returned where an instance of IHttpActionResult was expected..
/// </summary>
internal static string ApiControllerActionInvoker_NullHttpActionResult {
get {
return ResourceManager.GetString("ApiControllerActionInvoker_NullHttpActionResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No action was found on the controller '{0}' that matches the name '{1}'..
/// </summary>
internal static string ApiControllerActionSelector_ActionNameNotFound {
get {
return ResourceManager.GetString("ApiControllerActionSelector_ActionNameNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No action was found on the controller '{0}' that matches the request..
/// </summary>
internal static string ApiControllerActionSelector_ActionNotFound {
get {
return ResourceManager.GetString("ApiControllerActionSelector_ActionNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Multiple actions were found that match the request: {0}.
/// </summary>
internal static string ApiControllerActionSelector_AmbiguousMatch {
get {
return ResourceManager.GetString("ApiControllerActionSelector_AmbiguousMatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The requested resource does not support http method '{0}'..
/// </summary>
internal static string ApiControllerActionSelector_HttpMethodNotSupported {
get {
return ResourceManager.GetString("ApiControllerActionSelector_HttpMethodNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The route prefix '{0}' on the controller named '{1}' cannot end with a '/' character..
/// </summary>
internal static string AttributeRoutes_InvalidPrefix {
get {
return ResourceManager.GetString("AttributeRoutes_InvalidPrefix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The route template '{0}' on the action named '{1}' cannot start with a '/' character..
/// </summary>
internal static string AttributeRoutes_InvalidTemplate {
get {
return ResourceManager.GetString("AttributeRoutes_InvalidTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The authentication filter did not encounter an error or set a principal..
/// </summary>
internal static string AuthenticationFilterDidNothing {
get {
return ResourceManager.GetString("AuthenticationFilterDidNothing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The authentication filter encountered an error. ErrorResult='{0}'..
/// </summary>
internal static string AuthenticationFilterErrorResult {
get {
return ResourceManager.GetString("AuthenticationFilterErrorResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The authentication filter successfully set a principal to a known identity. Identity.Name='{0}'. Identity.AuthenticationType='{1}'..
/// </summary>
internal static string AuthenticationFilterSetPrincipalToKnownIdentity {
get {
return ResourceManager.GetString("AuthenticationFilterSetPrincipalToKnownIdentity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The authentication filter set a principal to an unknown identity..
/// </summary>
internal static string AuthenticationFilterSetPrincipalToUnknownIdentity {
get {
return ResourceManager.GetString("AuthenticationFilterSetPrincipalToUnknownIdentity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The request is invalid..
/// </summary>
internal static string BadRequest {
get {
return ResourceManager.GetString("BadRequest", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The batch request must have a "Content-Type" header..
/// </summary>
internal static string BatchContentTypeMissing {
get {
return ResourceManager.GetString("BatchContentTypeMissing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The batch request of media type '{0}' is not supported..
/// </summary>
internal static string BatchMediaTypeNotSupported {
get {
return ResourceManager.GetString("BatchMediaTypeNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The 'Content' property on the batch request cannot be null..
/// </summary>
internal static string BatchRequestMissingContent {
get {
return ResourceManager.GetString("BatchRequestMissingContent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot reuse an '{0}' instance. '{0}' has to be constructed per incoming message. Check your custom '{1}' and make sure that it will not manufacture the same instance..
/// </summary>
internal static string CannotSupportSingletonInstance {
get {
return ResourceManager.GetString("CannotSupportSingletonInstance", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameter '{0}' cannot contain a null element..
/// </summary>
internal static string CollectionParameterContainsNullElement {
get {
return ResourceManager.GetString("CollectionParameterContainsNullElement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The property {0}.{1} could not be found..
/// </summary>
internal static string Common_PropertyNotFound {
get {
return ResourceManager.GetString("Common_PropertyNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type {0} must derive from {1}..
/// </summary>
internal static string Common_TypeMustDriveFromType {
get {
return ResourceManager.GetString("Common_TypeMustDriveFromType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No route providing a controller name was found to match request URI '{0}'.
/// </summary>
internal static string ControllerNameNotFound {
get {
return ResourceManager.GetString("ControllerNameNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type {0} must have a public constructor which accepts three parameters of types {1}, {2}, and {3}..
/// </summary>
internal static string DataAnnotationsModelValidatorProvider_ConstructorRequirements {
get {
return ResourceManager.GetString("DataAnnotationsModelValidatorProvider_ConstructorRequirements", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type {0} must have a public constructor which accepts two parameters of types {1} and {2}..
/// </summary>
internal static string DataAnnotationsModelValidatorProvider_ValidatableConstructorRequirements {
get {
return ResourceManager.GetString("DataAnnotationsModelValidatorProvider_ValidatableConstructorRequirements", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Multiple types were found that match the controller named '{0}'. This can happen if the route that services this request ('{1}') found multiple controllers defined with the same name but differing namespaces, which is not supported.{3}{3}The request for '{0}' has found the following matching controllers:{2}.
/// </summary>
internal static string DefaultControllerFactory_ControllerNameAmbiguous_WithRouteTemplate {
get {
return ResourceManager.GetString("DefaultControllerFactory_ControllerNameAmbiguous_WithRouteTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No type was found that matches the controller named '{0}'..
/// </summary>
internal static string DefaultControllerFactory_ControllerNameNotFound {
get {
return ResourceManager.GetString("DefaultControllerFactory_ControllerNameNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred when trying to create a controller of type '{0}'. Make sure that the controller has a parameterless public constructor..
/// </summary>
internal static string DefaultControllerFactory_ErrorCreatingController {
get {
return ResourceManager.GetString("DefaultControllerFactory_ErrorCreatingController", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The constructor to use for activating the constraint type '{0}' is ambiguous. Multiple constructors were found with the following number of parameters: {1}..
/// </summary>
internal static string DefaultInlineConstraintResolver_AmbiguousCtors {
get {
return ResourceManager.GetString("DefaultInlineConstraintResolver_AmbiguousCtors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not find a constructor for constraint type '{0}' with the following number of parameters: {1}..
/// </summary>
internal static string DefaultInlineConstraintResolver_CouldNotFindCtor {
get {
return ResourceManager.GetString("DefaultInlineConstraintResolver_CouldNotFindCtor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The constraint type '{0}' which is mapped to constraint key '{1}' must implement the IHttpRouteConstraint interface..
/// </summary>
internal static string DefaultInlineConstraintResolver_TypeNotConstraint {
get {
return ResourceManager.GetString("DefaultInlineConstraintResolver_TypeNotConstraint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The service type {0} is not supported..
/// </summary>
internal static string DefaultServices_InvalidServiceType {
get {
return ResourceManager.GetString("DefaultServices_InvalidServiceType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A dependency resolver of type '{0}' returned an invalid value of null from its BeginScope method. If the container does not have a concept of scope, consider returning a scope that resolves in the root of the container instead..
/// </summary>
internal static string DependencyResolver_BeginScopeReturnsNull {
get {
return ResourceManager.GetString("DependencyResolver_BeginScopeReturnsNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No service registered for type '{0}'..
/// </summary>
internal static string DependencyResolverNoService {
get {
return ResourceManager.GetString("DependencyResolverNoService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Multiple controller types were found that match the URL. This can happen if attribute routes on multiple controllers match the requested URL.{1}{1}The request has found the following matching controller types: {0}.
/// </summary>
internal static string DirectRoute_AmbiguousController {
get {
return ResourceManager.GetString("DirectRoute_AmbiguousController", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Direct routing does not support per-route message handlers..
/// </summary>
internal static string DirectRoute_HandlerNotSupported {
get {
return ResourceManager.GetString("DirectRoute_HandlerNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A direct route for an action method cannot use the parameter 'action'. Specify a literal path in place of this parameter to create a route to the action..
/// </summary>
internal static string DirectRoute_InvalidParameter_Action {
get {
return ResourceManager.GetString("DirectRoute_InvalidParameter_Action", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A direct route cannot use the parameter 'controller'. Specify a literal path in place of this parameter to create a route to a controller..
/// </summary>
internal static string DirectRoute_InvalidParameter_Controller {
get {
return ResourceManager.GetString("DirectRoute_InvalidParameter_Controller", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The route does not have any associated action descriptors. Routing requires that each direct route map to a non-empty set of actions..
/// </summary>
internal static string DirectRoute_MissingActionDescriptors {
get {
return ResourceManager.GetString("DirectRoute_MissingActionDescriptors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error has occurred..
/// </summary>
internal static string ErrorOccurred {
get {
return ResourceManager.GetString("ErrorOccurred", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No action result converter could be constructed for a generic parameter type '{0}'..
/// </summary>
internal static string HttpActionDescriptor_NoConverterForGenericParamterTypeExists {
get {
return ResourceManager.GetString("HttpActionDescriptor_NoConverterForGenericParamterTypeExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HttpControllerContext.Configuration must not be null..
/// </summary>
internal static string HttpControllerContext_ConfigurationMustNotBeNull {
get {
return ResourceManager.GetString("HttpControllerContext_ConfigurationMustNotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The request does not have an associated configuration object or the provided configuration was null..
/// </summary>
internal static string HttpRequestMessageExtensions_NoConfiguration {
get {
return ResourceManager.GetString("HttpRequestMessageExtensions_NoConfiguration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The provided configuration does not have an instance of the '{0}' service registered..
/// </summary>
internal static string HttpRequestMessageExtensions_NoContentNegotiator {
get {
return ResourceManager.GetString("HttpRequestMessageExtensions_NoContentNegotiator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not find a formatter matching the media type '{0}' that can write an instance of '{1}'..
/// </summary>
internal static string HttpRequestMessageExtensions_NoMatchingFormatter {
get {
return ResourceManager.GetString("HttpRequestMessageExtensions_NoMatchingFormatter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Processing of the HTTP request resulted in an exception. Please see the HTTP response returned by the 'Response' property of this exception for details..
/// </summary>
internal static string HttpResponseExceptionMessage {
get {
return ResourceManager.GetString("HttpResponseExceptionMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The inline constraint resolver of type '{0}' was unable to resolve the following inline constraint: '{1}'..
/// </summary>
internal static string HttpRouteBuilder_CouldNotResolveConstraint {
get {
return ResourceManager.GetString("HttpRouteBuilder_CouldNotResolveConstraint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The server is no longer available..
/// </summary>
internal static string HttpServerDisposed {
get {
return ResourceManager.GetString("HttpServerDisposed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The key is invalid JQuery syntax because it is missing a closing bracket.
/// </summary>
internal static string JQuerySyntaxMissingClosingBracket {
get {
return ResourceManager.GetString("JQuerySyntaxMissingClosingBracket", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The number of keys in a NameValueCollection has exceeded the limit of '{0}'. You can adjust it by modifying the MaxHttpCollectionKeys property on the '{1}' class..
/// </summary>
internal static string MaxHttpCollectionKeyLimitReached {
get {
return ResourceManager.GetString("MaxHttpCollectionKeyLimitReached", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property '{0}' on type '{1}' is invalid. Value-typed properties marked as [Required] must also be marked with [DataMember(IsRequired=true)] to be recognized as required. Consider attributing the declaring type with [DataContract] and the property with [DataMember(IsRequired=true)]..
/// </summary>
internal static string MissingDataMemberIsRequired {
get {
return ResourceManager.GetString("MissingDataMemberIsRequired", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} property is required..
/// </summary>
internal static string MissingRequiredMember {
get {
return ResourceManager.GetString("MissingRequiredMember", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value '{0}' is not valid for {1}..
/// </summary>
internal static string ModelBinderConfig_ValueInvalid {
get {
return ResourceManager.GetString("ModelBinderConfig_ValueInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A value is required..
/// </summary>
internal static string ModelBinderConfig_ValueRequired {
get {
return ResourceManager.GetString("ModelBinderConfig_ValueRequired", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type '{0}' does not subclass {1} or implement the interface {2}..
/// </summary>
internal static string ModelBinderProviderCollection_InvalidBinderType {
get {
return ResourceManager.GetString("ModelBinderProviderCollection_InvalidBinderType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The binding context has a null Model, but this binder requires a non-null model of type '{0}'..
/// </summary>
internal static string ModelBinderUtil_ModelCannotBeNull {
get {
return ResourceManager.GetString("ModelBinderUtil_ModelCannotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The binding context has a Model of type '{0}', but this binder can only operate on models of type '{1}'..
/// </summary>
internal static string ModelBinderUtil_ModelInstanceIsWrong {
get {
return ResourceManager.GetString("ModelBinderUtil_ModelInstanceIsWrong", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The binding context cannot have a null ModelMetadata..
/// </summary>
internal static string ModelBinderUtil_ModelMetadataCannotBeNull {
get {
return ResourceManager.GetString("ModelBinderUtil_ModelMetadataCannotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The binding context has a ModelType of '{0}', but this binder can only operate on models of type '{1}'..
/// </summary>
internal static string ModelBinderUtil_ModelTypeIsWrong {
get {
return ResourceManager.GetString("ModelBinderUtil_ModelTypeIsWrong", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The ModelMetadata property must be set before accessing this property..
/// </summary>
internal static string ModelBindingContext_ModelMetadataMustBeSet {
get {
return ResourceManager.GetString("ModelBindingContext_ModelMetadataMustBeSet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No controller was created to handle this request..
/// </summary>
internal static string NoControllerCreated {
get {
return ResourceManager.GetString("NoControllerCreated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No controller was selected to handle this request..
/// </summary>
internal static string NoControllerSelected {
get {
return ResourceManager.GetString("NoControllerSelected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No route data was found for this request..
/// </summary>
internal static string NoRouteData {
get {
return ResourceManager.GetString("NoRouteData", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The object has not yet been initialized. Ensure that HttpConfiguration.EnsureInitialized() is called in the application's startup code after all other initialization code..
/// </summary>
internal static string Object_NotYetInitialized {
get {
return ResourceManager.GetString("Object_NotYetInitialized", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Optional parameter '{0}' is not supported by '{1}'..
/// </summary>
internal static string OptionalBodyParameterNotSupported {
get {
return ResourceManager.GetString("OptionalBodyParameterNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't bind multiple parameters ('{0}' and '{1}') to the request's content..
/// </summary>
internal static string ParameterBindingCantHaveMultipleBodyParameters {
get {
return ResourceManager.GetString("ParameterBindingCantHaveMultipleBodyParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't bind parameter '{0}' because it has conflicting attributes on it..
/// </summary>
internal static string ParameterBindingConflictingAttributes {
get {
return ResourceManager.GetString("ParameterBindingConflictingAttributes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can't bind parameter '{1}'. Must specify a custom model binder to bind parameters of type '{0}'..
/// </summary>
internal static string ParameterBindingIllegalType {
get {
return ResourceManager.GetString("ParameterBindingIllegalType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameters dictionary contains a null entry for parameter '{0}' of non-nullable type '{1}' for method '{2}' in '{3}'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter..
/// </summary>
internal static string ReflectedActionDescriptor_ParameterCannotBeNull {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_ParameterCannotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameters dictionary does not contain an entry for parameter '{0}' of type '{1}' for method '{2}' in '{3}'. The dictionary must contain an entry for each parameter, including parameters that have null values..
/// </summary>
internal static string ReflectedActionDescriptor_ParameterNotInDictionary {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_ParameterNotInDictionary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameters dictionary contains an invalid entry for parameter '{0}' for method '{1}' in '{2}'. The dictionary contains a value of type '{3}', but the parameter requires a value of type '{4}'..
/// </summary>
internal static string ReflectedActionDescriptor_ParameterValueHasWrongType {
get {
return ResourceManager.GetString("ReflectedActionDescriptor_ParameterValueHasWrongType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot call action method '{0}' on controller '{1}' because the action method is a generic method..
/// </summary>
internal static string ReflectedHttpActionDescriptor_CannotCallOpenGenericMethods {
get {
return ResourceManager.GetString("ReflectedHttpActionDescriptor_CannotCallOpenGenericMethods", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The request must have a request context..
/// </summary>
internal static string Request_RequestContextMustNotBeNull {
get {
return ResourceManager.GetString("Request_RequestContextMustNotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The request context property on the request must be null or match ApiController.RequestContext..
/// </summary>
internal static string RequestContextConflict {
get {
return ResourceManager.GetString("RequestContextConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The property 'Request' on '{0}' is null. The property must be initialized with a non-null value..
/// </summary>
internal static string RequestIsNull {
get {
return ResourceManager.GetString("RequestIsNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Authorization has been denied for this request..
/// </summary>
internal static string RequestNotAuthorized {
get {
return ResourceManager.GetString("RequestNotAuthorized", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No HTTP resource was found that matches the request URI '{0}'..
/// </summary>
internal static string ResourceNotFound {
get {
return ResourceManager.GetString("ResourceNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A null value was returned where an instance of HttpResponseMessage was expected..
/// </summary>
internal static string ResponseMessageResultConverter_NullHttpResponseMessage {
get {
return ResourceManager.GetString("ResponseMessageResultConverter_NullHttpResponseMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Adding or removing items from a '{0}' is not supported. Please use a key when adding and removing items..
/// </summary>
internal static string Route_AddRemoveWithNoKeyNotSupported {
get {
return ResourceManager.GetString("Route_AddRemoveWithNoKeyNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A path segment that contains more than one section, such as a literal section or a parameter, cannot contain a catch-all parameter..
/// </summary>
internal static string Route_CannotHaveCatchAllInMultiSegment {
get {
return ResourceManager.GetString("Route_CannotHaveCatchAllInMultiSegment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A path segment cannot contain two consecutive parameters. They must be separated by a '/' or by a literal string..
/// </summary>
internal static string Route_CannotHaveConsecutiveParameters {
get {
return ResourceManager.GetString("Route_CannotHaveConsecutiveParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The route template separator character '/' cannot appear consecutively. It must be separated by either a parameter or a literal value..
/// </summary>
internal static string Route_CannotHaveConsecutiveSeparators {
get {
return ResourceManager.GetString("Route_CannotHaveConsecutiveSeparators", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A catch-all parameter can only appear as the last segment of the route template..
/// </summary>
internal static string Route_CatchAllMustBeLast {
get {
return ResourceManager.GetString("Route_CatchAllMustBeLast", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The route parameter name '{0}' is invalid. Route parameter names must be non-empty and cannot contain these characters: "{{", "}}", "/", "?".
/// </summary>
internal static string Route_InvalidParameterName {
get {
return ResourceManager.GetString("Route_InvalidParameterName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The route template cannot start with a '/' or '~' character and it cannot contain a '?' character..
/// </summary>
internal static string Route_InvalidRouteTemplate {
get {
return ResourceManager.GetString("Route_InvalidRouteTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There is an incomplete parameter in this path segment: '{0}'. Check that each '{{' character has a matching '}}' character..
/// </summary>
internal static string Route_MismatchedParameter {
get {
return ResourceManager.GetString("Route_MismatchedParameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The route parameter name '{0}' appears more than one time in the route template..
/// </summary>
internal static string Route_RepeatedParameter {
get {
return ResourceManager.GetString("Route_RepeatedParameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The constraint entry '{0}' on the route with route template '{1}' must have a string value or be of a type which implements '{2}'..
/// </summary>
internal static string Route_ValidationMustBeStringOrCustomConstraint {
get {
return ResourceManager.GetString("Route_ValidationMustBeStringOrCustomConstraint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A route named '{0}' could not be found in the route collection..
/// </summary>
internal static string RouteCollection_NameNotFound {
get {
return ResourceManager.GetString("RouteCollection_NameNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only one route prefix attribute is supported. Remove extra attributes from the controller of type '{0}'..
/// </summary>
internal static string RoutePrefix_CannotSupportMultiRoutePrefix {
get {
return ResourceManager.GetString("RoutePrefix_CannotSupportMultiRoutePrefix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The property 'prefix' from route prefix attribute on controller of type '{0}' cannot be null..
/// </summary>
internal static string RoutePrefix_PrefixCannotBeNull {
get {
return ResourceManager.GetString("RoutePrefix_PrefixCannotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A route named '{0}' is already in the route collection. Route names must be unique.
///
///Duplicates:
///{1}
///{2}.
/// </summary>
internal static string SubRouteCollection_DuplicateRouteName {
get {
return ResourceManager.GetString("SubRouteCollection_DuplicateRouteName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Action filter for '{0}'.
/// </summary>
internal static string TraceActionFilterMessage {
get {
return ResourceManager.GetString("TraceActionFilterMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Action='{0}'.
/// </summary>
internal static string TraceActionInvokeMessage {
get {
return ResourceManager.GetString("TraceActionInvokeMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Action returned '{0}'.
/// </summary>
internal static string TraceActionReturnValue {
get {
return ResourceManager.GetString("TraceActionReturnValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Selected action '{0}'.
/// </summary>
internal static string TraceActionSelectedMessage {
get {
return ResourceManager.GetString("TraceActionSelectedMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Binding parameter '{0}'.
/// </summary>
internal static string TraceBeginParameterBind {
get {
return ResourceManager.GetString("TraceBeginParameterBind", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancelled.
/// </summary>
internal static string TraceCancelledMessage {
get {
return ResourceManager.GetString("TraceCancelledMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter '{0}' bound to the value '{1}'.
/// </summary>
internal static string TraceEndParameterBind {
get {
return ResourceManager.GetString("TraceEndParameterBind", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter '{0}' failed to bind..
/// </summary>
internal static string TraceEndParameterBindNoBind {
get {
return ResourceManager.GetString("TraceEndParameterBindNoBind", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Will use same '{0}' formatter.
/// </summary>
internal static string TraceGetPerRequestFormatterEndMessage {
get {
return ResourceManager.GetString("TraceGetPerRequestFormatterEndMessage", resourceCulture);
}