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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
|
//Copyright 2010 Microsoft Corporation
//
//Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
//"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and limitations under the License.
namespace System.Data.Services.Client {
using System;
using System.Resources;
internal static class Strings {
internal static string BatchStream_MissingBoundary {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MissingBoundary);
}
}
internal static string BatchStream_ContentExpected(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_ContentExpected,p0);
}
internal static string BatchStream_ContentUnexpected(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_ContentUnexpected,p0);
}
internal static string BatchStream_GetMethodNotSupportedInChangeset {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_GetMethodNotSupportedInChangeset);
}
}
internal static string BatchStream_InvalidBatchFormat {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidBatchFormat);
}
}
internal static string BatchStream_InvalidDelimiter(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidDelimiter,p0);
}
internal static string BatchStream_MissingEndChangesetDelimiter {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MissingEndChangesetDelimiter);
}
}
internal static string BatchStream_InvalidHeaderValueSpecified(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidHeaderValueSpecified,p0);
}
internal static string BatchStream_InvalidContentLengthSpecified(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidContentLengthSpecified,p0);
}
internal static string BatchStream_OnlyGETOperationsCanBeSpecifiedInBatch {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_OnlyGETOperationsCanBeSpecifiedInBatch);
}
}
internal static string BatchStream_InvalidOperationHeaderSpecified {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidOperationHeaderSpecified);
}
}
internal static string BatchStream_InvalidHttpMethodName(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidHttpMethodName,p0);
}
internal static string BatchStream_MoreDataAfterEndOfBatch {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MoreDataAfterEndOfBatch);
}
}
internal static string BatchStream_InternalBufferRequestTooSmall {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InternalBufferRequestTooSmall);
}
}
internal static string BatchStream_InvalidMethodHeaderSpecified(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidMethodHeaderSpecified,p0);
}
internal static string BatchStream_InvalidHttpVersionSpecified(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidHttpVersionSpecified,p0,p1);
}
internal static string BatchStream_InvalidNumberOfHeadersAtOperationStart(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidNumberOfHeadersAtOperationStart,p0,p1);
}
internal static string BatchStream_MissingOrInvalidContentEncodingHeader(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MissingOrInvalidContentEncodingHeader,p0,p1);
}
internal static string BatchStream_InvalidNumberOfHeadersAtChangeSetStart(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidNumberOfHeadersAtChangeSetStart,p0,p1);
}
internal static string BatchStream_MissingContentTypeHeader(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MissingContentTypeHeader,p0);
}
internal static string BatchStream_InvalidContentTypeSpecified(object p0, object p1, object p2, object p3) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidContentTypeSpecified,p0,p1,p2,p3);
}
internal static string Batch_ExpectedContentType(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Batch_ExpectedContentType,p0);
}
internal static string Batch_ExpectedResponse(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Batch_ExpectedResponse,p0);
}
internal static string Batch_IncompleteResponseCount {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Batch_IncompleteResponseCount);
}
}
internal static string Batch_UnexpectedContent(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Batch_UnexpectedContent,p0);
}
internal static string Context_BaseUri {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_BaseUri);
}
}
internal static string Context_CannotConvertKey(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_CannotConvertKey,p0);
}
internal static string Context_TrackingExpectsAbsoluteUri {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_TrackingExpectsAbsoluteUri);
}
}
internal static string Context_LinkResourceInsertFailure {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_LinkResourceInsertFailure);
}
}
internal static string Context_InternalError(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_InternalError,p0);
}
internal static string Context_BatchExecuteError {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_BatchExecuteError);
}
}
internal static string Context_EntitySetName {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_EntitySetName);
}
}
internal static string Context_MissingEditLinkInResponseBody {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_MissingEditLinkInResponseBody);
}
}
internal static string Context_MissingSelfLinkInResponseBody {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_MissingSelfLinkInResponseBody);
}
}
internal static string Context_MissingEditMediaLinkInResponseBody {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_MissingEditMediaLinkInResponseBody);
}
}
internal static string Content_EntityWithoutKey {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Content_EntityWithoutKey);
}
}
internal static string Content_EntityIsNotEntityType {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Content_EntityIsNotEntityType);
}
}
internal static string Context_EntityNotContained {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_EntityNotContained);
}
}
internal static string Context_EntityAlreadyContained {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_EntityAlreadyContained);
}
}
internal static string Context_DifferentEntityAlreadyContained {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_DifferentEntityAlreadyContained);
}
}
internal static string Context_DidNotOriginateAsync {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_DidNotOriginateAsync);
}
}
internal static string Context_AsyncAlreadyDone {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_AsyncAlreadyDone);
}
}
internal static string Context_OperationCanceled {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_OperationCanceled);
}
}
internal static string Context_NoLoadWithInsertEnd {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_NoLoadWithInsertEnd);
}
}
internal static string Context_NoRelationWithInsertEnd {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_NoRelationWithInsertEnd);
}
}
internal static string Context_NoRelationWithDeleteEnd {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_NoRelationWithDeleteEnd);
}
}
internal static string Context_RelationAlreadyContained {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_RelationAlreadyContained);
}
}
internal static string Context_RelationNotRefOrCollection {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_RelationNotRefOrCollection);
}
}
internal static string Context_AddLinkCollectionOnly {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_AddLinkCollectionOnly);
}
}
internal static string Context_AddRelatedObjectCollectionOnly {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_AddRelatedObjectCollectionOnly);
}
}
internal static string Context_AddRelatedObjectSourceDeleted {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_AddRelatedObjectSourceDeleted);
}
}
internal static string Context_SetLinkReferenceOnly {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_SetLinkReferenceOnly);
}
}
internal static string Context_NoContentTypeForMediaLink(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_NoContentTypeForMediaLink,p0,p1);
}
internal static string Context_BatchNotSupportedForMediaLink {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_BatchNotSupportedForMediaLink);
}
}
internal static string Context_UnexpectedZeroRawRead {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_UnexpectedZeroRawRead);
}
}
internal static string Context_VersionNotSupported(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_VersionNotSupported,p0,p1);
}
internal static string Context_SendingRequestEventArgsNotHttp {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_SendingRequestEventArgsNotHttp);
}
}
internal static string Context_ChildResourceExists {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_ChildResourceExists);
}
}
internal static string Context_EntityNotMediaLinkEntry {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_EntityNotMediaLinkEntry);
}
}
internal static string Context_MLEWithoutSaveStream(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_MLEWithoutSaveStream,p0);
}
internal static string Context_SetSaveStreamOnMediaEntryProperty(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_SetSaveStreamOnMediaEntryProperty,p0);
}
internal static string Context_SetSaveStreamWithoutEditMediaLink {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_SetSaveStreamWithoutEditMediaLink);
}
}
internal static string Collection_NullCollectionReference(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Collection_NullCollectionReference,p0,p1);
}
internal static string ClientType_MissingOpenProperty(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MissingOpenProperty,p0,p1);
}
internal static string Clienttype_MultipleOpenProperty(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Clienttype_MultipleOpenProperty,p0);
}
internal static string ClientType_MissingProperty(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MissingProperty,p0,p1);
}
internal static string ClientType_KeysMustBeSimpleTypes(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_KeysMustBeSimpleTypes,p0);
}
internal static string ClientType_KeysOnDifferentDeclaredType(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_KeysOnDifferentDeclaredType,p0);
}
internal static string ClientType_MissingMimeTypeProperty(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MissingMimeTypeProperty,p0,p1);
}
internal static string ClientType_MissingMediaEntryProperty(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MissingMediaEntryProperty,p0);
}
internal static string ClientType_NoSettableFields(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_NoSettableFields,p0);
}
internal static string ClientType_MultipleImplementationNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MultipleImplementationNotSupported);
}
}
internal static string ClientType_NullOpenProperties(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_NullOpenProperties,p0);
}
internal static string ClientType_CollectionOfNonEntities {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_CollectionOfNonEntities);
}
}
internal static string ClientType_Ambiguous(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_Ambiguous,p0,p1);
}
internal static string DataServiceException_GeneralError {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceException_GeneralError);
}
}
internal static string DataServiceRequest_FailGetCount {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceRequest_FailGetCount);
}
}
internal static string Deserialize_GetEnumerator {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_GetEnumerator);
}
}
internal static string Deserialize_Current(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_Current,p0,p1);
}
internal static string Deserialize_MixedTextWithComment {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MixedTextWithComment);
}
}
internal static string Deserialize_ExpectingSimpleValue {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_ExpectingSimpleValue);
}
}
internal static string Deserialize_NotApplicationXml {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_NotApplicationXml);
}
}
internal static string Deserialize_MismatchAtomLinkLocalSimple {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MismatchAtomLinkLocalSimple);
}
}
internal static string Deserialize_MismatchAtomLinkFeedPropertyNotCollection(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MismatchAtomLinkFeedPropertyNotCollection,p0);
}
internal static string Deserialize_MismatchAtomLinkEntryPropertyIsCollection(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MismatchAtomLinkEntryPropertyIsCollection,p0);
}
internal static string Deserialize_UnknownMimeTypeSpecified(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_UnknownMimeTypeSpecified,p0);
}
internal static string Deserialize_ExpectedEmptyMediaLinkEntryContent {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_ExpectedEmptyMediaLinkEntryContent);
}
}
internal static string Deserialize_ContentPlusPropertiesNotAllowed {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_ContentPlusPropertiesNotAllowed);
}
}
internal static string Deserialize_NoLocationHeader {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_NoLocationHeader);
}
}
internal static string Deserialize_ServerException(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_ServerException,p0);
}
internal static string Deserialize_MissingIdElement {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MissingIdElement);
}
}
internal static string EpmClientType_PropertyIsComplex(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmClientType_PropertyIsComplex,p0);
}
internal static string EpmClientType_PropertyIsPrimitive(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmClientType_PropertyIsPrimitive,p0);
}
internal static string EpmSourceTree_InvalidSourcePath(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmSourceTree_InvalidSourcePath,p0,p1);
}
internal static string EpmSourceTree_DuplicateEpmAttrsWithSameSourceName(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmSourceTree_DuplicateEpmAttrsWithSameSourceName,p0,p1);
}
internal static string EpmSourceTree_InaccessiblePropertyOnType(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmSourceTree_InaccessiblePropertyOnType,p0,p1);
}
internal static string EpmTargetTree_InvalidTargetPath(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmTargetTree_InvalidTargetPath,p0);
}
internal static string EpmTargetTree_AttributeInMiddle(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmTargetTree_AttributeInMiddle,p0);
}
internal static string EpmTargetTree_DuplicateEpmAttrsWithSameTargetName(object p0, object p1, object p2, object p3) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmTargetTree_DuplicateEpmAttrsWithSameTargetName,p0,p1,p2,p3);
}
internal static string EntityPropertyMapping_EpmAttribute(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EntityPropertyMapping_EpmAttribute,p0);
}
internal static string EntityPropertyMapping_TargetNamespaceUriNotValid(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EntityPropertyMapping_TargetNamespaceUriNotValid,p0);
}
internal static string HttpProcessUtility_ContentTypeMissing {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_ContentTypeMissing);
}
}
internal static string HttpProcessUtility_MediaTypeMissingValue {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeMissingValue);
}
}
internal static string HttpProcessUtility_MediaTypeRequiresSemicolonBeforeParameter {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeRequiresSemicolonBeforeParameter);
}
}
internal static string HttpProcessUtility_MediaTypeRequiresSlash {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeRequiresSlash);
}
}
internal static string HttpProcessUtility_MediaTypeRequiresSubType {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeRequiresSubType);
}
}
internal static string HttpProcessUtility_MediaTypeUnspecified {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeUnspecified);
}
}
internal static string HttpProcessUtility_EncodingNotSupported(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_EncodingNotSupported,p0);
}
internal static string HttpProcessUtility_EscapeCharWithoutQuotes(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_EscapeCharWithoutQuotes,p0);
}
internal static string HttpProcessUtility_EscapeCharAtEnd(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_EscapeCharAtEnd,p0);
}
internal static string HttpProcessUtility_ClosingQuoteNotFound(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_ClosingQuoteNotFound,p0);
}
internal static string MaterializeFromAtom_CountNotPresent {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_CountNotPresent);
}
}
internal static string MaterializeFromAtom_CountFormatError {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_CountFormatError);
}
}
internal static string MaterializeFromAtom_TopLevelLinkNotAvailable {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_TopLevelLinkNotAvailable);
}
}
internal static string MaterializeFromAtom_CollectionKeyNotPresentInLinkTable {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_CollectionKeyNotPresentInLinkTable);
}
}
internal static string MaterializeFromAtom_GetNestLinkForFlatCollection {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_GetNestLinkForFlatCollection);
}
}
internal static string Serializer_NullKeysAreNotSupported(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Serializer_NullKeysAreNotSupported,p0);
}
internal static string Util_EmptyString {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Util_EmptyString);
}
}
internal static string Util_EmptyArray {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Util_EmptyArray);
}
}
internal static string Util_NullArrayElement {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Util_NullArrayElement);
}
}
internal static string ALinq_UnsupportedExpression(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_UnsupportedExpression,p0);
}
internal static string ALinq_CouldNotConvert(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CouldNotConvert,p0);
}
internal static string ALinq_MethodNotSupported(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_MethodNotSupported,p0);
}
internal static string ALinq_UnaryNotSupported(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_UnaryNotSupported,p0);
}
internal static string ALinq_BinaryNotSupported(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_BinaryNotSupported,p0);
}
internal static string ALinq_ConstantNotSupported(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ConstantNotSupported,p0);
}
internal static string ALinq_TypeBinaryNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_TypeBinaryNotSupported);
}
}
internal static string ALinq_ConditionalNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ConditionalNotSupported);
}
}
internal static string ALinq_ParameterNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ParameterNotSupported);
}
}
internal static string ALinq_MemberAccessNotSupported(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_MemberAccessNotSupported,p0);
}
internal static string ALinq_LambdaNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_LambdaNotSupported);
}
}
internal static string ALinq_NewNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_NewNotSupported);
}
}
internal static string ALinq_MemberInitNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_MemberInitNotSupported);
}
}
internal static string ALinq_ListInitNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ListInitNotSupported);
}
}
internal static string ALinq_NewArrayNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_NewArrayNotSupported);
}
}
internal static string ALinq_InvocationNotSupported {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_InvocationNotSupported);
}
}
internal static string ALinq_QueryOptionsOnlyAllowedOnLeafNodes {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_QueryOptionsOnlyAllowedOnLeafNodes);
}
}
internal static string ALinq_CantExpand {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantExpand);
}
}
internal static string ALinq_CantCastToUnsupportedPrimitive(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantCastToUnsupportedPrimitive,p0);
}
internal static string ALinq_CantNavigateWithoutKeyPredicate {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantNavigateWithoutKeyPredicate);
}
}
internal static string ALinq_CanOnlyApplyOneKeyPredicate {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CanOnlyApplyOneKeyPredicate);
}
}
internal static string ALinq_CantTranslateExpression(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantTranslateExpression,p0);
}
internal static string ALinq_TranslationError(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_TranslationError,p0);
}
internal static string ALinq_CantAddQueryOption {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantAddQueryOption);
}
}
internal static string ALinq_CantAddDuplicateQueryOption(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantAddDuplicateQueryOption,p0);
}
internal static string ALinq_CantAddAstoriaQueryOption(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantAddAstoriaQueryOption,p0);
}
internal static string ALinq_CantAddQueryOptionStartingWithDollarSign(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantAddQueryOptionStartingWithDollarSign,p0);
}
internal static string ALinq_CantReferToPublicField(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantReferToPublicField,p0);
}
internal static string ALinq_QueryOptionsOnlyAllowedOnSingletons {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_QueryOptionsOnlyAllowedOnSingletons);
}
}
internal static string ALinq_QueryOptionOutOfOrder(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_QueryOptionOutOfOrder,p0,p1);
}
internal static string ALinq_CannotAddCountOption {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotAddCountOption);
}
}
internal static string ALinq_CannotAddCountOptionConflict {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotAddCountOptionConflict);
}
}
internal static string ALinq_ProjectionOnlyAllowedOnLeafNodes {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ProjectionOnlyAllowedOnLeafNodes);
}
}
internal static string ALinq_ProjectionCanOnlyHaveOneProjection {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ProjectionCanOnlyHaveOneProjection);
}
}
internal static string ALinq_ProjectionMemberAssignmentMismatch(object p0, object p1, object p2) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ProjectionMemberAssignmentMismatch,p0,p1,p2);
}
internal static string ALinq_ExpressionNotSupportedInProjectionToEntity(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ExpressionNotSupportedInProjectionToEntity,p0,p1);
}
internal static string ALinq_ExpressionNotSupportedInProjection(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ExpressionNotSupportedInProjection,p0,p1);
}
internal static string ALinq_CannotConstructKnownEntityTypes {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotConstructKnownEntityTypes);
}
}
internal static string ALinq_CannotCreateConstantEntity {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotCreateConstantEntity);
}
}
internal static string ALinq_PropertyNamesMustMatchInProjections(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_PropertyNamesMustMatchInProjections,p0,p1);
}
internal static string ALinq_CanOnlyProjectTheLeaf {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CanOnlyProjectTheLeaf);
}
}
internal static string ALinq_CannotProjectWithExplicitExpansion {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotProjectWithExplicitExpansion);
}
}
internal static string DSKAttribute_MustSpecifyAtleastOnePropertyName {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DSKAttribute_MustSpecifyAtleastOnePropertyName);
}
}
internal static string DataServiceCollection_LoadRequiresTargetCollectionObserved {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_LoadRequiresTargetCollectionObserved);
}
}
internal static string DataServiceCollection_CannotStopTrackingChildCollection {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_CannotStopTrackingChildCollection);
}
}
internal static string DataServiceCollection_OperationForTrackedOnly {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_OperationForTrackedOnly);
}
}
internal static string DataServiceCollection_CannotDetermineContextFromItems {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_CannotDetermineContextFromItems);
}
}
internal static string DataServiceCollection_InsertIntoTrackedButNotLoadedCollection {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_InsertIntoTrackedButNotLoadedCollection);
}
}
internal static string DataBinding_DataServiceCollectionArgumentMustHaveEntityType(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_DataServiceCollectionArgumentMustHaveEntityType,p0);
}
internal static string DataBinding_CollectionPropertySetterValueHasObserver(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_CollectionPropertySetterValueHasObserver,p0,p1);
}
internal static string DataBinding_CollectionChangedUnknownAction(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_CollectionChangedUnknownAction,p0);
}
internal static string DataBinding_BindingOperation_DetachedSource {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_BindingOperation_DetachedSource);
}
}
internal static string DataBinding_BindingOperation_ArrayItemNull(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_BindingOperation_ArrayItemNull,p0);
}
internal static string DataBinding_BindingOperation_ArrayItemNotEntity(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_BindingOperation_ArrayItemNotEntity,p0);
}
internal static string DataBinding_Util_UnknownEntitySetName(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_Util_UnknownEntitySetName,p0);
}
internal static string DataBinding_EntityAlreadyInCollection(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_EntityAlreadyInCollection,p0);
}
internal static string DataBinding_NotifyPropertyChangedNotImpl(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_NotifyPropertyChangedNotImpl,p0);
}
internal static string DataBinding_ComplexObjectAssociatedWithMultipleEntities(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_ComplexObjectAssociatedWithMultipleEntities,p0);
}
internal static string AtomParser_FeedUnexpected {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_FeedUnexpected);
}
}
internal static string AtomParser_PagingLinkOutsideOfFeed {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_PagingLinkOutsideOfFeed);
}
}
internal static string AtomParser_ManyFeedCounts {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_ManyFeedCounts);
}
}
internal static string AtomParser_FeedCountNotUnderFeed {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_FeedCountNotUnderFeed);
}
}
internal static string AtomParser_UnexpectedContentUnderExpandedLink {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_UnexpectedContentUnderExpandedLink);
}
}
internal static string AtomMaterializer_CannotAssignNull(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_CannotAssignNull,p0,p1);
}
internal static string AtomMaterializer_DuplicatedNextLink {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_DuplicatedNextLink);
}
}
internal static string AtomMaterializer_EntryIntoCollectionMismatch(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_EntryIntoCollectionMismatch,p0,p1);
}
internal static string AtomMaterializer_EntryToAccessIsNull(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_EntryToAccessIsNull,p0);
}
internal static string AtomMaterializer_EntryToInitializeIsNull(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_EntryToInitializeIsNull,p0);
}
internal static string AtomMaterializer_ProjectEntityTypeMismatch(object p0, object p1, object p2) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_ProjectEntityTypeMismatch,p0,p1,p2);
}
internal static string AtomMaterializer_LinksMissingHref {
get {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_LinksMissingHref);
}
}
internal static string AtomMaterializer_PropertyMissing(object p0) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_PropertyMissing,p0);
}
internal static string AtomMaterializer_PropertyMissingFromEntry(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_PropertyMissingFromEntry,p0,p1);
}
internal static string AtomMaterializer_PropertyNotExpectedEntry(object p0, object p1) {
return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_PropertyNotExpectedEntry,p0,p1);
}
}
internal static partial class Error {
internal static Exception ArgumentNull(string paramName) {
return new ArgumentNullException(paramName);
}
internal static Exception ArgumentOutOfRange(string paramName) {
return new ArgumentOutOfRangeException(paramName);
}
internal static Exception NotImplemented() {
return new NotImplementedException();
}
internal static Exception NotSupported() {
return new NotSupportedException();
}
}
}
|