forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dotnet.txt
9845 lines (9845 loc) · 278 KB
/
dotnet.txt
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
AChannelServiceEndpointSBindingIsNull0
AChannelServiceEndpointSContractIsNull0
ADMembership_BadPasswordAnswerMappings_not_specified
ADMembership_Connection_password_must_not_be_empty
ADMembership_Connection_username_must_not_be_empty
ADMembership_Container_does_not_exist
ADMembership_Container_must_be_specified
ADMembership_Container_not_superior
ADMembership_DefContainer_does_not_exist
ADMembership_DefContainer_not_specified
ADMembership_Default_Creds_not_supported
ADMembership_Description
ADMembership_GCPortsNotSupported
ADMembership_Generated_password_not_complex
ADMembership_InvalidConnectionProtection
ADMembership_InvalidProviderUserKey
ADMembership_MappedAttribute_does_not_exist
ADMembership_MappedAttribute_does_not_exist_on_user
ADMembership_No_ADAM_Partition
ADMembership_No_secure_conn_for_password
ADMembership_OnlineUsers_not_supported
ADMembership_OnlyLdap_supported
ADMembership_Parameter_too_long
ADMembership_PasswordA_not_supported
ADMembership_PasswordQ_not_supported
ADMembership_PasswordQuestionAnswerMapping_not_specified
ADMembership_PasswordReset_without_question_not_supported
ADMembership_PasswordRetrieval_not_supported_AD
ADMembership_Property_not_found
ADMembership_Property_not_found_on_object
ADMembership_Provider_SearchMethods_not_supported
ADMembership_Provider_not_initialized
ADMembership_Schema_mappings_must_not_be_empty
ADMembership_Secure_connection_not_established
ADMembership_ServerlessADsPath_not_supported
ADMembership_Setting_ApplicationName_not_supported
ADMembership_Setting_UserId_not_supported
ADMembership_Ssl_connection_not_established
ADMembership_UPN_contains_backslash
ADMembership_Unknown_Error
ADMembership_UserProperty_not_supported
ADMembership_Username_and_password_reqd
ADMembership_Username_mapping_invalid
ADMembership_Username_mapping_invalid_ADAM
ADMembership_Valid_Targets
ADMembership_Wrong_syntax
ADMembership_attribute_not_single_valued
ADMembership_invalid_path
ADMembership_mapping_not_unique
ADMembership_unable_to_contact_domain
ADMembership_unable_to_set_password_port
ADP_AdapterMappingExceptionMessage
ADP_Ascending
ADP_BadParameterName
ADP_CalledTwice
ADP_ClosedConnectionError
ADP_ClosedDataReaderError
ADP_CollectionIndexInt32
ADP_CollectionIndexString
ADP_CollectionInvalidType
ADP_CollectionIsNotParent
ADP_CollectionIsParent
ADP_CollectionNullValue
ADP_CollectionParameterElementIsNull
ADP_CollectionParameterElementIsNullOrEmpty
ADP_CollectionRemoveInvalidObject
ADP_CollectionUniqueValue
ADP_ColumnSchemaExpression
ADP_ColumnSchemaMismatch
ADP_ColumnSchemaMissing1
ADP_ColumnSchemaMissing2
ADP_CommandTextRequired
ADP_ComputerNameEx
ADP_ConnecitonRequired_UpdateRows
ADP_ConnectionAlreadyOpen
ADP_ConnectionIsDisabled
ADP_ConnectionRequired
ADP_ConnectionRequired_Batch
ADP_ConnectionRequired_Clone
ADP_ConnectionRequired_Delete
ADP_ConnectionRequired_Fill
ADP_ConnectionRequired_FillPage
ADP_ConnectionRequired_FillSchema
ADP_ConnectionRequired_Insert
ADP_ConnectionRequired_Update
ADP_ConnectionStateMsg
ADP_ConnectionStateMsg_Closed
ADP_ConnectionStateMsg_Connecting
ADP_ConnectionStateMsg_Open
ADP_ConnectionStateMsg_OpenExecuting
ADP_ConnectionStateMsg_OpenFetching
ADP_ConnectionStringSyntax
ADP_DBConcurrencyExceptionMessage
ADP_DataAdapterExceptionMessage
ADP_DataReaderClosed
ADP_DataReaderNoData
ADP_DatabaseNameTooLong
ADP_DbDataUpdatableRecordReadOnly
ADP_DbRecordReadOnly
ADP_DbTypeNotSupported
ADP_DelegatedTransactionPresent
ADP_DeriveParametersNotSupported
ADP_Descending
ADP_DoubleValuedProperty
ADP_DynamicSQLJoinUnsupported
ADP_DynamicSQLNestedQuote
ADP_DynamicSQLNoKeyInfoDelete
ADP_DynamicSQLNoKeyInfoRowVersionDelete
ADP_DynamicSQLNoKeyInfoRowVersionUpdate
ADP_DynamicSQLNoKeyInfoUpdate
ADP_DynamicSQLNoTableInfo
ADP_EmptyArray
ADP_EmptyDatabaseName
ADP_EmptyString
ADP_EvenLengthLiteralValue
ADP_FillChapterAutoIncrement
ADP_FillRequiresSourceTableName
ADP_FillSchemaRequiresSourceTableName
ADP_GetSchemaTableIsNotSupported
ADP_HexDigitLiteralValue
ADP_ImplicitlyClosedDataReaderError
ADP_IncorrectAsyncResult
ADP_InternalConnectionError
ADP_InternalProviderError
ADP_InvalidArgumentLength
ADP_InvalidArgumentValue
ADP_InvalidBufferSizeOrIndex
ADP_InvalidCommandTimeout
ADP_InvalidConnectTimeoutValue
ADP_InvalidConnectionOptionValue
ADP_InvalidConnectionOptionValueLength
ADP_InvalidDataDirectory
ADP_InvalidDataLength
ADP_InvalidDataLength2
ADP_InvalidDataReaderFieldCountForScalarType
ADP_InvalidDataReaderMissingColumnForType
ADP_InvalidDataReaderMissingDiscriminatorColumn
ADP_InvalidDataReaderUnableToDetermineType
ADP_InvalidDataReaderUnableToMaterializeNonScalarType
ADP_InvalidDataType
ADP_InvalidDateTimeDigits
ADP_InvalidDestinationBufferIndex
ADP_InvalidEnumerationValue
ADP_InvalidFormatValue
ADP_InvalidImplicitConversion
ADP_InvalidKey
ADP_InvalidMaxRecords
ADP_InvalidMaximumScale
ADP_InvalidMetaDataValue
ADP_InvalidMinMaxPoolSizeValues
ADP_InvalidMixedUsageOfSecureAndClearCredential
ADP_InvalidMixedUsageOfSecureCredentialAndContextConnection
ADP_InvalidMixedUsageOfSecureCredentialAndIntegratedSecurity
ADP_InvalidMultipartName
ADP_InvalidMultipartNameDelimiterUsage
ADP_InvalidMultipartNameQuoteUsage
ADP_InvalidMultipartNameToManyParts
ADP_InvalidOffsetValue
ADP_InvalidPrefixSuffix
ADP_InvalidSeekOrigin
ADP_InvalidSizeValue
ADP_InvalidSourceBufferIndex
ADP_InvalidSourceColumn
ADP_InvalidSourceTable
ADP_InvalidStartRecord
ADP_InvalidUDL
ADP_InvalidValue
ADP_InvalidXMLBadVersion
ADP_KeysRequiredForJoinOverNest
ADP_KeysRequiredForNesting
ADP_KeywordNotSupported
ADP_LiteralValueIsInvalid
ADP_LocalTransactionPresent
ADP_MismatchedAsyncResult
ADP_MissingColumnMapping
ADP_MissingConnectionOptionValue
ADP_MissingDataReaderFieldType
ADP_MissingSelectCommand
ADP_MissingSourceCommand
ADP_MissingSourceCommandConnection
ADP_MissingTableMapping
ADP_MissingTableMappingDestination
ADP_MissingTableSchema
ADP_MultipleReturnValue
ADP_MustBeReadOnly
ADP_MustUseSequentialAccess
ADP_NegativeParameter
ADP_NestingNotSupported
ADP_NoConnectionString
ADP_NoData
ADP_NoQueryMappingView
ADP_NoQuoteChange
ADP_NoStoredProcedureExists
ADP_NonCLSException
ADP_NonPooledOpenTimeout
ADP_NonSeqByteAccess
ADP_NonSequentialChunkAccess
ADP_NonSequentialColumnAccess
ADP_NotAPermissionElement
ADP_NotRowType
ADP_NotSupportedEnumerationValue
ADP_NullDataSet
ADP_NullDataTable
ADP_NumericToDecimalOverflow
ADP_ObsoleteKeyword
ADP_OdbcNoTypesFromProvider
ADP_OffsetOutOfRangeException
ADP_OnlyOneTableForStartRecordOrMaxRecords
ADP_OpenConnectionPropertySet
ADP_OpenConnectionRequired
ADP_OpenConnectionRequired_Clone
ADP_OpenConnectionRequired_Delete
ADP_OpenConnectionRequired_Insert
ADP_OpenConnectionRequired_Update
ADP_OpenReaderExists
ADP_OpenResultSetExists
ADP_OperationAborted
ADP_OperationAbortedExceptionMessage
ADP_ParallelTransactionsNotSupported
ADP_ParameterConversionFailed
ADP_ParameterValueOutOfRange
ADP_PendingAsyncOperation
ADP_PermissionTypeMismatch
ADP_PooledOpenTimeout
ADP_PrepareParameterScale
ADP_PrepareParameterSize
ADP_PrepareParameterType
ADP_PropertyNotSupported
ADP_ProviderDoesNotSupportCommandTrees
ADP_QuotePrefixNotSet
ADP_ResultsNotAllowedDuringBatch
ADP_RowUpdatedErrors
ADP_RowUpdatingErrors
ADP_SingleValuedProperty
ADP_StreamClosed
ADP_TransactionCompleted
ADP_TransactionCompletedButNotDisposed
ADP_TransactionConnectionMismatch
ADP_TransactionPresent
ADP_TransactionRequired
ADP_TransactionZombied
ADP_UdlFileError
ADP_UnableToCreateBooleanLiteral
ADP_UninitializedParameterSize
ADP_UnknownDataType
ADP_UnknownDataTypeCode
ADP_UnsupportedNativeDataTypeOleDb
ADP_UnwantedStatementType
ADP_UpdateConcurrencyViolation_Batch
ADP_UpdateConcurrencyViolation_Delete
ADP_UpdateConcurrencyViolation_Update
ADP_UpdateMismatchRowTable
ADP_UpdateRequiresCommandClone
ADP_UpdateRequiresCommandDelete
ADP_UpdateRequiresCommandInsert
ADP_UpdateRequiresCommandSelect
ADP_UpdateRequiresCommandUpdate
ADP_UpdateRequiresSourceTable
ADP_UpdateRequiresSourceTableName
ADP_VersionDoesNotSupportDataType
API_failed_due_to_error
API_not_supported_at_this_level
API_supported_for_current_user_only
Abort
AcceptsReturn
AcceptsReturnProperty
AcceptsTab
AcceptsTabProperty
AccessDataSourceView_SelectRequiresDataFile
AccessDataSource_CannotSetConnectionString
AccessDataSource_CannotSetProvider
AccessDataSource_DataFile
AccessDataSource_Description
AccessDataSource_DesignTimeRelativePathsNotSupported
AccessDataSource_DisplayName
AccessDataSource_NoPathDiscoveryPermission
AccessDataSource_SqlCacheDependencyNotSupported
Access_denied_for_monitoring
Access_denied_to_app_dir
Access_denied_to_path
Access_denied_to_unicode_app_dir
Action
Activity
ActivityDelegateInfo
ActivityDelegateInfoPresenter
ActivityDesigner
ActivityProperty
ActivitySchema
ActivitySchemaProperty
ActivityTemplateFactory
ActivityTypeDesigner
ActivityTypeResolver
AdRotator_AdCreated
AdRotator_AdvertisementFile
AdRotator_AlternateTextField
AdRotator_ImageKey
AdRotator_ImageUrlField
AdRotator_KeywordFilter
AdRotator_NavigateUrlField
AdRotator_NavigateUrlKey
AdRotator_OnAdCreated
AdRotator_Target
AdRotator_cant_open_file
AdRotator_cant_open_file_no_permission
AdRotator_expect_records_with_advertisement_properties
AdRotator_invalid_integer_format
AdRotator_no_advertisements
AdRotator_only_one_datasource
AdRotator_parse_error
Adapter_GoLabel
Adapter_OKLabel
Add
AddAnnotationCommand
AddEntity
AddImport
AddNewDataCommand
AddNewTypeCommand
AddTableWithoutKey
AddTvfReturnType
Addressing10ToStringFormat
AddressingHeadersCannotBeAddedToAddressingVersion
AddressingNoneToStringFormat
AddressingVersionNotSupported
AdvancedPropertyMatchesFilter
AdvancedPropertyMatchesFilterProperty
AdvancedSectionPinned
AdvancedSectionPinnedProperty
AliasNameAlreadyUsed
AliasNameIsAlreadyDefined
AllArtifactsMustTargetSameProvider_InvariantName
AllArtifactsMustTargetSameProvider_ManifestToken
AllElementsMustBeInSchema
AllowDuplicate
AllowNull
AllowNullProperty
AllowedItemType
AllowedItemTypeProperty
Already_precomp
AmbiguousEntityContainerEnd
AmbiguousFunctionAndType
AmbiguousFunctionArguments
AmbiguousFunctionOverload
AmbiguousMetadataMemberName
Ambiguous_server_tag
Ambiguous_type
AnnotationDialog
AnnotationText
AnnotationTextProperty
Annoymous_id_module_not_enabled
Anonymous_ClearAnonymousIdentifierNotSupported
Anonymous_id_too_long
Anonymous_id_too_long_2
Apartment_component_not_allowed
AppSetting_not_convertible
AppSetting_not_found
AppVerifier_AsyncCallbackInfo_FirstInvocation_ThreadInfo
AppVerifier_AsyncCallbackInfo_InvocationCount
AppVerifier_BasicInfo_Description
AppVerifier_BasicInfo_ErrorCode
AppVerifier_BasicInfo_ThreadInfo
AppVerifier_BasicInfo_URL
AppVerifier_BeginMethodInfo_CurrentHandler
AppVerifier_BeginMethodInfo_EntryMethod
AppVerifier_BeginMethodInfo_RequestNotification_Integrated
AppVerifier_BeginMethodInfo_RequestNotification_NotIntegrated
AppVerifier_BeginMethodInfo_ThreadInfo
AppVerifier_Errors_AsyncCallbackCalledAfterHttpApplicationReassigned
AppVerifier_Errors_AsyncCallbackGivenAsyncResultWhichWasNotCompleted
AppVerifier_Errors_AsyncCallbackInvokedAsynchronouslyButAsyncResultWasMarkedCompletedSynchronously
AppVerifier_Errors_AsyncCallbackInvokedEvenThoughBeginHandlerThrew
AppVerifier_Errors_AsyncCallbackInvokedMultipleTimes
AppVerifier_Errors_AsyncCallbackInvokedSynchronouslyButAsyncResultWasNotMarkedCompletedSynchronously
AppVerifier_Errors_AsyncCallbackInvokedWithNullParameter
AppVerifier_Errors_AsyncCallbackInvokedWithUnexpectedAsyncResultAsyncState
AppVerifier_Errors_AsyncCallbackInvokedWithUnexpectedAsyncResultInstance
AppVerifier_Errors_BeginHandlerDelegateWasNull
AppVerifier_Errors_BeginHandlerReturnedAsyncResultMarkedCompletedSynchronouslyButAsyncCallbackNeverCalled
AppVerifier_Errors_BeginHandlerReturnedAsyncResultMarkedCompletedSynchronouslyButWhichWasNotCompleted
AppVerifier_Errors_BeginHandlerReturnedNull
AppVerifier_Errors_BeginHandlerReturnedUnexpectedAsyncResultAsyncState
AppVerifier_Errors_HttpApplicationInstanceWasNull
AppVerifier_Errors_SyncContextSendOrPostCalledAfterRequestCompleted
AppVerifier_Subtitle
AppVerifier_Title
App_Domain_Restart
App_Virtual_Path
App_session_only_valid_in_global_asax
AppearanceEditorPart_Centimeters
AppearanceEditorPart_ChromeType
AppearanceEditorPart_Direction
AppearanceEditorPart_Em
AppearanceEditorPart_Ex
AppearanceEditorPart_Height
AppearanceEditorPart_Hidden
AppearanceEditorPart_Inches
AppearanceEditorPart_Millimeters
AppearanceEditorPart_PartTitle
AppearanceEditorPart_Percent
AppearanceEditorPart_Picas
AppearanceEditorPart_Pixels
AppearanceEditorPart_Points
AppearanceEditorPart_Title
AppearanceEditorPart_Width
Application_instance_cannot_be_changed
AppliedDeviceFiltersDialog_AppliedDeviceFilters
AppliedDeviceFiltersDialog_ApplyDeviceFilter
AppliedDeviceFiltersDialog_Argument
AppliedDeviceFiltersDialog_AssociatedItemsWillBeLost
AppliedDeviceFiltersDialog_AvailableDeviceFilters
AppliedDeviceFiltersDialog_DefaultFilterAlreadyApplied
AppliedDeviceFiltersDialog_DuplicateChoices
AppliedDeviceFiltersDialog_Title
Apply
Appx
Arg_ArrayPlusOffTooSmall
Arg_CannotCreateNode
Arg_ExpectingXmlTextReader
Arg_HSCapacityOverflow
Arg_IncompatibleParamType
ArgumentCollectionChanged
ArgumentCollectionChangedEvent
ArgumentDesigner
ArgumentDirection
ArgumentException_CountMaxLengthSmallerThanMinLength
ArgumentException_DuplicateName
ArgumentException_DuplicateParameterAttribute
ArgumentException_DuplicatePosition
ArgumentException_DuplicateRemainingArgumets
ArgumentException_HelpMessageBaseNameNullOrEmpty
ArgumentException_HelpMessageNullOrEmpty
ArgumentException_HelpMessageResourceIdNullOrEmpty
ArgumentException_InvalidParameterName
ArgumentException_LengthMaxLengthSmallerThanMinLength
ArgumentException_MissingBaseNameOrResourceId
ArgumentException_NoParametersFound
ArgumentException_ParserBuiltWithValueType
ArgumentException_RangeMaxRangeSmallerThanMinRange
ArgumentException_RangeMinRangeMaxRangeType
ArgumentException_RangeNotIComparable
ArgumentException_RegexPatternNullOrEmpty
ArgumentException_RequiredPositionalAfterOptionalPositional
ArgumentException_TypeMismatchForRemainingArguments
ArgumentException_UnregisteredParameterName
ArgumentException_ValidationParameterTypeMismatch
ArgumentIsNullOrWhitespace
ArgumentMustBeCSpaceType
ArgumentMustBeOSpaceType
ArgumentNull_Buffer
ArgumentNull_FileStream
ArgumentNull_MapName
ArgumentNull_ServerName
ArgumentOutOfRange
ArgumentOutOfRangeExpectedPostiveNumber
ArgumentOutOfRange_AdditionalAccessLimited
ArgumentOutOfRange_AnonymousReserved
ArgumentOutOfRange_CapacityGEFileSizeRequired
ArgumentOutOfRange_CapacityLargerThanLogicalAddressSpaceNotAllowed
ArgumentOutOfRange_DirectionModeInOrOut
ArgumentOutOfRange_DirectionModeInOutOrInOut
ArgumentOutOfRange_HandleInheritabilityNoneOrInheritable
ArgumentOutOfRange_ImpersonationInvalid
ArgumentOutOfRange_ImpersonationOptionsInvalid
ArgumentOutOfRange_InvalidPipeAccessRights
ArgumentOutOfRange_InvalidTimeout
ArgumentOutOfRange_MaxArgExceeded
ArgumentOutOfRange_MaxNumServerInstances
ArgumentOutOfRange_MaxStringsExceeded
ArgumentOutOfRange_MustBeNonNeg
ArgumentOutOfRange_NeedMaxFileSizeGEBufferSize
ArgumentOutOfRange_NeedNonNegNum
ArgumentOutOfRange_NeedPositiveNumber
ArgumentOutOfRange_NeedValidId
ArgumentOutOfRange_NeedValidLogRetention
ArgumentOutOfRange_NeedValidMaxNumFiles
ArgumentOutOfRange_NeedValidPipeAccessRights
ArgumentOutOfRange_OptionsInvalid
ArgumentOutOfRange_PositionLessThanCapacityRequired
ArgumentOutOfRange_PositiveOrDefaultCapacityRequired
ArgumentOutOfRange_PositiveOrDefaultSizeRequired
ArgumentOutOfRange_TransmissionModeByteOrMsg
ArgumentPrefix
ArgumentTypeHasNoIdentityKey
ArgumentTypeProperty
ArgumentTypesAreIncompatible
Argument_AddAttribute
Argument_AddNode
Argument_AddNonWhitespace
Argument_ConvertToString
Argument_CreateNavigator
Argument_EmptyFile
Argument_EmptyServerName
Argument_InvalidExpandedName
Argument_InvalidHandle
Argument_InvalidHexStyle
Argument_InvalidNumberStyles
Argument_InvalidOffLen
Argument_InvalidPIName
Argument_InvalidPrefix
Argument_MapNameEmptyString
Argument_MustBeBigInt
Argument_MustBeDerivedFrom
Argument_NamespaceDeclarationPrefixed
Argument_NamespaceDeclarationXml
Argument_NamespaceDeclarationXmlns
Argument_NeedNonemptyDelimiter
Argument_NeedNonemptyPipeName
Argument_NewMMFAppendModeNotAllowed
Argument_NewMMFWriteAccessNotAllowed
Argument_NonContainerInvalidAnyFlag
Argument_ReadAccessWithLargeCapacity
Argument_WrongAsyncResult
Argument_XObjectValue
ArrayExceededSize
ArrayExceededSizeAttribute
ArrayTooSmall
ArrayTypeIsNotSupported
AsGml
AsText
AspNetWebSocket_CloseAlreadyReceived
AspNetWebSocket_CloseAlreadySent
AspNetWebSocket_CloseDescriptionTooLong
AspNetWebSocket_CloseStatusEmptyButCloseDescriptionNonNull
AspNetWebSocket_DisposeNotSupported
AspNetWebSocket_ReceiveInProgress
AspNetWebSocket_SendInProgress
AspNetWebSocket_SendMessageTypeInvalid
Aspnet_not_installed
AssemblyMissingFromAssembliesToConsider
AssemblyNode
AssemblyResourceLoader_AssemblyNotFound
AssemblyResourceLoader_HandlerNotRegistered
AssemblyResourceLoader_InvalidRequest
AssemblyResourceLoader_NoCircularReferences
AssemblyResourceLoader_ResourceNotFound
Assembly_already_loaded
Assembly_not_compiled
Assembly_not_found_in_profile
Assess_Denied_Description1
Assess_Denied_Description2
Assess_Denied_Description3
Assess_Denied_MiscContent1
Assess_Denied_MiscTitle1
Assess_Denied_Misc_Content2
Assess_Denied_Misc_Content3
Assess_Denied_Misc_Content3_2
Assess_Denied_Section_Title2
Assess_Denied_Section_Title3
Assess_Denied_Title
AssignDesigner
AssociationMissingKeyColumn
AsyncCallbackException
AsyncEndCalledOnWrongChannel
AsyncEndCalledWithAnIAsyncResult
AsyncObjectAlreadyEnded
AsyncPlatformExtensions
Async_addhandler_too_late
Async_and_aspcompat
Async_and_transaction
Async_null_asyncresult
Async_operation_cannot_be_pending
Async_operation_cannot_be_started
Async_operation_disabled
Async_operation_pending
Async_required
Async_task_timed_out
Async_tasks_wrong_thread
AtLeastOneFaultReasonMustBeSpecified
Atio2BadString
AtleastOneSSDLNeeded
AttemptedToGetContractTypeForButThatTypeIs1
Attr_not_supported_in_directive
Attr_not_supported_in_pagedirective
Attr_not_supported_in_ucdirective
Attrib_Sql9_not_allowed
Attrib_not_allowed
Attrib_parse_error
AttributedTypesCannotInheritFromNonAttributedSerializableTypes
Attributes_mutually_exclusive
AuthStoreNotInstalled_Description
AuthStoreNotInstalled_Title
AuthStore_Application_not_found
AuthStore_Scope_not_found
AuthStore_policy_file_not_found
Auth_Invalid_Login_Url
Auth_bad_url
Auth_rule_must_specify_users_andor_roles
Auth_rule_names_cant_contain_char
AutoConnectDirections
AutoPostBackControl_CausesValidation
BadNamespaceOrAlias
BadNavigationPropertyBadFromRoleType
BadNavigationPropertyRelationshipNotRelationship
BadNavigationPropertyRolesCannotBeTheSame
BadNavigationPropertyUndefinedRole
BadParameterDirection
BadParameterDirectionForComposableFunctions
BadPrecisionAndScale
Bad_Base_Class_In_Code_File
Bad_VirtualPath_in_VirtualFileBase
Bad_attachment
Bad_machine_key
Bad_masterPage_ext
Bad_partition_resolver_connection_string
Bad_state_server_request
Bad_state_server_request_partition_resolver
BadlyFormattedBind
BadlyFormattedBindItem
Bar_dir_in_precompiled_app
BaseCompareValidator_CultureInvariantValues
BaseDataBoundControl_DataSource
BaseDataBoundControl_DataSourceID
BaseDataBoundControl_OnDataBound
BaseDataList_CellPadding
BaseDataList_CellSpacing
BaseDataList_DataKeyField
BaseDataList_DataKeys
BaseDataList_DataMember
BaseDataList_OnSelectedIndexChanged
BaseTemplatedMobileComponentEditor_TemplateModeErrorMessage
BaseTemplatedMobileComponentEditor_TemplateModeErrorTitle
BaseValidator_BadControlType
BaseValidator_ControlNotFound
BaseValidator_ControlToValidate
BaseValidator_ControlToValidateBlank
BaseValidator_Display
BaseValidator_EnableClientScript
BaseValidator_ErrorMessage
BaseValidator_IsValid
BaseValidator_SetFocusOnError
BaseValidator_Text
BaseValidator_ValidationGroup
Base_class_field_with_type_different_from_type_of_control
Base_type_not_allowed
BasicPropertyMatchesFilter
BasicPropertyMatchesFilterProperty
BeginEdit
BehaviorEditorPart_AllowClose
BehaviorEditorPart_AllowConnect
BehaviorEditorPart_AllowEdit
BehaviorEditorPart_AllowHide
BehaviorEditorPart_AllowMinimize
BehaviorEditorPart_AllowZoneChange
BehaviorEditorPart_AuthorizationFilter
BehaviorEditorPart_CatalogIconImageLink
BehaviorEditorPart_Description
BehaviorEditorPart_ExportMode
BehaviorEditorPart_ExportModeAll
BehaviorEditorPart_ExportModeNonSensitiveData
BehaviorEditorPart_ExportModeNone
BehaviorEditorPart_HelpLink
BehaviorEditorPart_HelpMode
BehaviorEditorPart_HelpModeModal
BehaviorEditorPart_HelpModeModeless
BehaviorEditorPart_HelpModeNavigate
BehaviorEditorPart_ImportErrorMessage
BehaviorEditorPart_PartTitle
BehaviorEditorPart_TitleIconImageLink
BehaviorEditorPart_TitleLink
BetweenLimitsCannotBeUntypedNulls
BetweenLimitsTypesAreNotCompatible
BetweenLimitsTypesAreNotOrderComparable
BetweenValueIsNotOrderComparable
BinaryEncoderSessionInvalid
BinaryEncoderSessionMalformed
BinaryExpressionProxy
Binder
Binding
BindingBehavior_ValueNotFound
BindingCollectionElement
BindingDoesnTSupportRequestReplyButContract1
BindingEditor
BindingName
BindingNotFoundInConfig
BindingProperty
Binding_DataMember
BlobPersonalizationState_CantApply
BlobPersonalizationState_CantExtract
BlobPersonalizationState_DeserializeError
BlobPersonalizationState_NotApplied
BlobPersonalizationState_NotLoaded
BlockExpressionProxy
Body
BodyPropertyName
BodyWriterCanOnlyBeWrittenOnce
BodyWriterReturnedIsNotBuffered
Boolean
BothMinAndMaxValueMustBeSpecifiedForNonConstantFacet
Both_culture_and_language
BoundColumn_DataField
BoundColumn_DataFormatString
BoundColumn_ReadOnly
BoundField_ApplyFormatInEditMode
BoundField_ConvertEmptyStringToNull
BoundField_DataField
BoundField_DataFormatString
BoundField_HtmlEncode
BoundField_NullDisplayText
BoundField_ReadOnly
BoundField_WrongControlType
Bounds
BoxesTemplate
BreadCrumbBarLayout
BreakLabel
BrowseTypeDirectly
BrowseTypeDirectlyProperty
Browser_Circular_Reference
Browser_InvalidID
Browser_InvalidStrongNameKey
Browser_Not_Allowed_InAppLevel
Browser_W3SVC_Failure_Helper_Text
Browser_attributes_required
Browser_compile_error
Browser_empty_identification
Browser_invalid_element
Browser_mutually_exclusive_attributes
Browser_parentID_Not_Found
Browser_parentID_applied_to_default
Browser_refid_prohibits_identification
Brush
BulletedList_BulletImageUrl
BulletedList_BulletStyle
BulletedList_BulletedListDisplayMode
BulletedList_FirstBulletNumber
BulletedList_OnClick
BulletedList_SelectionNotSupported
BulletedList_Target
BulletedList_TextNotSupported
ButtonColumn_ButtonType
ButtonColumn_CausesValidation
ButtonColumn_DataTextField
ButtonColumn_DataTextFormatString
ButtonColumn_Text
ButtonColumn_ValidationGroup
ButtonFieldBase_ButtonType
ButtonFieldBase_CausesValidation
ButtonFieldBase_ValidationGroup
ButtonField_DataTextField
ButtonField_DataTextFormatString
ButtonField_ImageUrl
ButtonField_Text
Button_CausesValidation
Button_OnClick
Button_OnClientClick
Button_OnCommand
Button_PostBackUrl
Button_Text
Button_UseSubmitBehavior
CacheProfile_Not_Found
Cache_dep_table_not_found
Cache_dependency_used_more_that_once
Cache_not_available
Cache_null_table
Cache_null_table_in_tables
Cache_url_invalid
Cacheability_for_field_must_be_private_or_nocache
CalculatedEnumValueOutOfRange
Calendar_CalendarEntryText
Calendar_Caption
Calendar_CellPadding
Calendar_CellSpacing
Calendar_DayHeaderStyle
Calendar_DayNameFormat
Calendar_DayStyle
Calendar_FirstDayOfWeek
Calendar_NextMonthText
Calendar_NextMonthTitle
Calendar_NextPrevFormat
Calendar_NextPrevStyle
Calendar_OnDayRender
Calendar_OnSelectionChanged
Calendar_OnVisibleMonthChanged
Calendar_OtherMonthDayStyle
Calendar_PrevMonthText
Calendar_PreviousMonthTitle
Calendar_SelectMonthText
Calendar_SelectMonthTitle
Calendar_SelectWeekText
Calendar_SelectWeekTitle
Calendar_SelectedDate
Calendar_SelectedDates
Calendar_SelectedDayStyle
Calendar_SelectionMode
Calendar_SelectorStyle
Calendar_ShowDayHeader
Calendar_ShowGridLines
Calendar_ShowNextPrevMonth
Calendar_ShowTitle
Calendar_TitleFormat
Calendar_TitleStyle
Calendar_TitleText
Calendar_TodayDayStyle
Calendar_TodaysDate
Calendar_VisibleDate
Calendar_WeekendDayStyle
CallSiteBinder
CallbackMustReturnVoid
CallbackParameterInvalid
CallbacksCannotBeVirtualMethods
CanAutoSplit
CanCommit
CanOnlyStoreIntoArgOrLocGot0
CanPasteItems
CanReduce
CanResolveInputText
CanZoomIn
CanZoomOut
Can_not_access_files_other_than_config
Can_not_issue_cookie_or_redirect
CancelChanges
CancellationScopeDesigner
CannotAddChangeConflicts
CannotAttachAddNonNewEntities
CannotAttachAlreadyExistingEntity
CannotAttachAsModifiedWithoutOriginalState
CannotCallNoncomposableFunction
CannotChangeInheritanceType
CannotChangePropertyReturnType
CannotChangePropertyReturnTypeToNull
CannotConvertNumericLiteral
CannotCreateEmptyMultiset
CannotCreateEntityWithNoPrimaryKeyDefined
CannotCreateMultisetofNulls
CannotDeserializeRefAtTopLevel
CannotDetectAddressingVersion
CannotHaveTwoOperationsWithTheSameName3
CannotInheritTwoOperationsWithTheSameName3
CannotInstantiateAbstractType
CannotLoadDifferentVersionOfSchemaInTheSameItemCollection
CannotLoadMemberType
CannotPerformCUDOnReadOnlyTable
CannotPerformOperationDuringSubmitChanges
CannotPerformOperationForUntrackedObject
CannotPerformOperationOutsideSubmitChanges
CannotRemoveChangeConflicts
CannotRemoveUnattachedEntity
CannotResolveNameToTypeOrFunction
CannotSerializeObjectWithCycles
CannotSetValidationOnDataControlButtons
CannotSetValidationOnPagerButtons
CannotUseParentPostBackWhenValidating
CannotUseSystemNamespaceAsAlias
Cannot_Have_Children_Of_Type
Cannot_access_AspCompat
Cannot_access_mappath_details
Cannot_access_mappath_title
Cannot_add_value_not_collection
Cannot_append_cookie_after_headers_sent
Cannot_append_header_after_headers_sent
Cannot_call_ISAPI_functions
Cannot_call_defaulthttphandler_sync
Cannot_call_method_after_headers_sent_generic
Cannot_clear_headers_after_headers_sent
Cannot_convert_from_to
Cannot_create_AppDomain
Cannot_create_HostEnv
Cannot_evaluate_expression
Cannot_execute_transacted_code
Cannot_execute_url_in_this_context
Cannot_exit_up_top_directory
Cannot_flush_completed_response
Cannot_get_query_string
Cannot_get_query_string_bytes
Cannot_get_snapshot_if_not_buffered
Cannot_impersonate
Cannot_init
Cannot_map_path
Cannot_map_path_without_context
Cannot_modify_cookies_after_headers_sent
Cannot_post_workitem
Cannot_read_posted_data
Cannot_redirect_after_headers_sent
Cannot_redirect_to_newline
Cannot_retrieve_request_data
Cannot_set_content_type_after_headers_sent
Cannot_set_header_encoding_after_headers_sent
Cannot_set_property
Cannot_set_recursive_skin
Cannot_set_status_after_headers_sent
Cannot_specify_test_without_match
Cannot_use_integrated_security
Cannot_use_snapshot_after_headers_sent
Cannot_use_snapshot_for_TextWriter
CantAddAlreadyExistingItem
CantAddAlreadyExistingKey
CantGenPropertySet
Cant_Create_Process_Host
Cant_Enumerate_NativeDirs
Cant_Init_Native_Config
Cant_Multiselect
Cant_Multiselect_In_Single_Mode
Cant_Read_Native_Modules
Cant_both_set_and_generate_Etag
Cant_connect_sql_cache_dep_database_admin
Cant_connect_sql_cache_dep_database_admin_cmdtxt
Cant_connect_sql_cache_dep_database_polling
Cant_connect_sql_session_database
Cant_connect_sql_session_database_partition_resolver
Cant_delete_dir
Cant_disable_table_sql_cache_dep
Cant_get_enabled_tables_sql_cache_dep
Cant_have_multiple_session_module
Cant_make_session_request
Cant_make_session_request_partition_resolver
Cant_save_session_id_because_id_is_invalid
Cant_save_session_id_because_response_was_flushed
Cant_serialize_session_state
Cant_update_precompiled_app
Cant_use_default_items_and_filtered_collection
Cant_use_nocompile_uc
Cant_use_partition_resolve
Capability_file_root_element
Caps_cannot_be_inited_twice
CaseDesigner
CaseKeyBox
CaseKeyBoxViewModel
CaseKeyValidationCallback
CaseKeyValidationCallbackDelegate
CaseKeyValidationCallbackProperty
CaseTypeProperty
Catalog
CatalogPart_MustBeInZone
CatalogPart_SampleWebPartTitle
CatalogPart_UnknownDescription
CatalogZoneBase_AddVerb
CatalogZoneBase_CloseVerb
CatalogZoneBase_DefaultEmptyZoneText
CatalogZoneBase_DefaultSelectTargetZoneText
CatalogZoneBase_HeaderText
CatalogZoneBase_InstructionText
CatalogZoneBase_NoCatalogPartID
CatalogZoneBase_PartLinkStyle
CatalogZoneBase_SelectCatalogPart
CatalogZoneBase_SelectTargetZoneText
CatalogZoneBase_SelectedCatalogPartID
CatalogZoneBase_SelectedPartLinkStyle
CatalogZoneBase_ShowCatalogIcons
CatalogZone_OnlyCatalogParts
CatchBlockProxy
CatchDesigner
Category
CategoryBase
CategoryContainer
CategoryProperty
Category_Accessibility
Category_Action
Category_Appearance
Category_Behavior
Category_Cache
Category_Control
Category_Data
Category_Databindings
Category_DefaultProperties
Category_DeviceSpecific
Category_Links
Category_Navigation
Category_Paging
Category_Parameter
Category_Style
Category_Styles
Category_Validation
Category_Verbs
Category_WebPart
Category_WebPartAppearance
Category_WebPartBehavior
Center
CenterActivityTypeResolverDialog
CenterActivityTypeResolverDialogProperty
CenterTypeBrowserDialog
CenterTypeBrowserDialogProperty
CenterView
Change
ChangePassword_CancelButtonClick
ChangePassword_CancelButtonImageUrl
ChangePassword_CancelButtonStyle
ChangePassword_CancelButtonText
ChangePassword_CancelButtonType
ChangePassword_CancelDestinationPageUrl
ChangePassword_ChangePasswordButtonImageUrl
ChangePassword_ChangePasswordButtonStyle
ChangePassword_ChangePasswordButtonText
ChangePassword_ChangePasswordButtonType
ChangePassword_ChangePasswordError
ChangePassword_ChangePasswordFailureText
ChangePassword_ChangedPassword
ChangePassword_ChangingPassword
ChangePassword_ConfirmNewPasswordLabelText
ChangePassword_ConfirmPasswordCompareErrorMessage
ChangePassword_ContinueButtonClick
ChangePassword_ContinueButtonImageUrl
ChangePassword_ContinueButtonStyle
ChangePassword_ContinueButtonText
ChangePassword_ContinueButtonType
ChangePassword_CreateUserIconUrl
ChangePassword_CreateUserText
ChangePassword_CreateUserUrl
ChangePassword_DefaultCancelButtonText
ChangePassword_DefaultChangePasswordButtonText
ChangePassword_DefaultChangePasswordFailureText
ChangePassword_DefaultChangePasswordTitleText
ChangePassword_DefaultConfirmNewPasswordLabelText