Parameterized.System.Data.Services.Client.cs 49 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  1. //Copyright 2010 Microsoft Corporation
  2. //
  3. //Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
  4. //You may obtain a copy of the License at
  5. //
  6. //http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. //Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
  9. //"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. //See the License for the specific language governing permissions and limitations under the License.
  11. namespace System.Data.Services.Client {
  12. using System;
  13. using System.Resources;
  14. internal static class Strings {
  15. internal static string BatchStream_MissingBoundary {
  16. get {
  17. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MissingBoundary);
  18. }
  19. }
  20. internal static string BatchStream_ContentExpected(object p0) {
  21. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_ContentExpected,p0);
  22. }
  23. internal static string BatchStream_ContentUnexpected(object p0) {
  24. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_ContentUnexpected,p0);
  25. }
  26. internal static string BatchStream_GetMethodNotSupportedInChangeset {
  27. get {
  28. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_GetMethodNotSupportedInChangeset);
  29. }
  30. }
  31. internal static string BatchStream_InvalidBatchFormat {
  32. get {
  33. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidBatchFormat);
  34. }
  35. }
  36. internal static string BatchStream_InvalidDelimiter(object p0) {
  37. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidDelimiter,p0);
  38. }
  39. internal static string BatchStream_MissingEndChangesetDelimiter {
  40. get {
  41. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MissingEndChangesetDelimiter);
  42. }
  43. }
  44. internal static string BatchStream_InvalidHeaderValueSpecified(object p0) {
  45. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidHeaderValueSpecified,p0);
  46. }
  47. internal static string BatchStream_InvalidContentLengthSpecified(object p0) {
  48. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidContentLengthSpecified,p0);
  49. }
  50. internal static string BatchStream_OnlyGETOperationsCanBeSpecifiedInBatch {
  51. get {
  52. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_OnlyGETOperationsCanBeSpecifiedInBatch);
  53. }
  54. }
  55. internal static string BatchStream_InvalidOperationHeaderSpecified {
  56. get {
  57. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidOperationHeaderSpecified);
  58. }
  59. }
  60. internal static string BatchStream_InvalidHttpMethodName(object p0) {
  61. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidHttpMethodName,p0);
  62. }
  63. internal static string BatchStream_MoreDataAfterEndOfBatch {
  64. get {
  65. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MoreDataAfterEndOfBatch);
  66. }
  67. }
  68. internal static string BatchStream_InternalBufferRequestTooSmall {
  69. get {
  70. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InternalBufferRequestTooSmall);
  71. }
  72. }
  73. internal static string BatchStream_InvalidMethodHeaderSpecified(object p0) {
  74. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidMethodHeaderSpecified,p0);
  75. }
  76. internal static string BatchStream_InvalidHttpVersionSpecified(object p0, object p1) {
  77. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidHttpVersionSpecified,p0,p1);
  78. }
  79. internal static string BatchStream_InvalidNumberOfHeadersAtOperationStart(object p0, object p1) {
  80. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidNumberOfHeadersAtOperationStart,p0,p1);
  81. }
  82. internal static string BatchStream_MissingOrInvalidContentEncodingHeader(object p0, object p1) {
  83. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MissingOrInvalidContentEncodingHeader,p0,p1);
  84. }
  85. internal static string BatchStream_InvalidNumberOfHeadersAtChangeSetStart(object p0, object p1) {
  86. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidNumberOfHeadersAtChangeSetStart,p0,p1);
  87. }
  88. internal static string BatchStream_MissingContentTypeHeader(object p0) {
  89. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_MissingContentTypeHeader,p0);
  90. }
  91. internal static string BatchStream_InvalidContentTypeSpecified(object p0, object p1, object p2, object p3) {
  92. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.BatchStream_InvalidContentTypeSpecified,p0,p1,p2,p3);
  93. }
  94. internal static string Batch_ExpectedContentType(object p0) {
  95. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Batch_ExpectedContentType,p0);
  96. }
  97. internal static string Batch_ExpectedResponse(object p0) {
  98. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Batch_ExpectedResponse,p0);
  99. }
  100. internal static string Batch_IncompleteResponseCount {
  101. get {
  102. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Batch_IncompleteResponseCount);
  103. }
  104. }
  105. internal static string Batch_UnexpectedContent(object p0) {
  106. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Batch_UnexpectedContent,p0);
  107. }
  108. internal static string Context_BaseUri {
  109. get {
  110. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_BaseUri);
  111. }
  112. }
  113. internal static string Context_CannotConvertKey(object p0) {
  114. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_CannotConvertKey,p0);
  115. }
  116. internal static string Context_TrackingExpectsAbsoluteUri {
  117. get {
  118. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_TrackingExpectsAbsoluteUri);
  119. }
  120. }
  121. internal static string Context_LinkResourceInsertFailure {
  122. get {
  123. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_LinkResourceInsertFailure);
  124. }
  125. }
  126. internal static string Context_InternalError(object p0) {
  127. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_InternalError,p0);
  128. }
  129. internal static string Context_BatchExecuteError {
  130. get {
  131. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_BatchExecuteError);
  132. }
  133. }
  134. internal static string Context_EntitySetName {
  135. get {
  136. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_EntitySetName);
  137. }
  138. }
  139. internal static string Context_MissingEditLinkInResponseBody {
  140. get {
  141. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_MissingEditLinkInResponseBody);
  142. }
  143. }
  144. internal static string Context_MissingSelfLinkInResponseBody {
  145. get {
  146. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_MissingSelfLinkInResponseBody);
  147. }
  148. }
  149. internal static string Context_MissingEditMediaLinkInResponseBody {
  150. get {
  151. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_MissingEditMediaLinkInResponseBody);
  152. }
  153. }
  154. internal static string Content_EntityWithoutKey {
  155. get {
  156. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Content_EntityWithoutKey);
  157. }
  158. }
  159. internal static string Content_EntityIsNotEntityType {
  160. get {
  161. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Content_EntityIsNotEntityType);
  162. }
  163. }
  164. internal static string Context_EntityNotContained {
  165. get {
  166. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_EntityNotContained);
  167. }
  168. }
  169. internal static string Context_EntityAlreadyContained {
  170. get {
  171. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_EntityAlreadyContained);
  172. }
  173. }
  174. internal static string Context_DifferentEntityAlreadyContained {
  175. get {
  176. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_DifferentEntityAlreadyContained);
  177. }
  178. }
  179. internal static string Context_DidNotOriginateAsync {
  180. get {
  181. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_DidNotOriginateAsync);
  182. }
  183. }
  184. internal static string Context_AsyncAlreadyDone {
  185. get {
  186. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_AsyncAlreadyDone);
  187. }
  188. }
  189. internal static string Context_OperationCanceled {
  190. get {
  191. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_OperationCanceled);
  192. }
  193. }
  194. internal static string Context_NoLoadWithInsertEnd {
  195. get {
  196. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_NoLoadWithInsertEnd);
  197. }
  198. }
  199. internal static string Context_NoRelationWithInsertEnd {
  200. get {
  201. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_NoRelationWithInsertEnd);
  202. }
  203. }
  204. internal static string Context_NoRelationWithDeleteEnd {
  205. get {
  206. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_NoRelationWithDeleteEnd);
  207. }
  208. }
  209. internal static string Context_RelationAlreadyContained {
  210. get {
  211. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_RelationAlreadyContained);
  212. }
  213. }
  214. internal static string Context_RelationNotRefOrCollection {
  215. get {
  216. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_RelationNotRefOrCollection);
  217. }
  218. }
  219. internal static string Context_AddLinkCollectionOnly {
  220. get {
  221. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_AddLinkCollectionOnly);
  222. }
  223. }
  224. internal static string Context_AddRelatedObjectCollectionOnly {
  225. get {
  226. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_AddRelatedObjectCollectionOnly);
  227. }
  228. }
  229. internal static string Context_AddRelatedObjectSourceDeleted {
  230. get {
  231. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_AddRelatedObjectSourceDeleted);
  232. }
  233. }
  234. internal static string Context_SetLinkReferenceOnly {
  235. get {
  236. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_SetLinkReferenceOnly);
  237. }
  238. }
  239. internal static string Context_NoContentTypeForMediaLink(object p0, object p1) {
  240. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_NoContentTypeForMediaLink,p0,p1);
  241. }
  242. internal static string Context_BatchNotSupportedForMediaLink {
  243. get {
  244. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_BatchNotSupportedForMediaLink);
  245. }
  246. }
  247. internal static string Context_UnexpectedZeroRawRead {
  248. get {
  249. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_UnexpectedZeroRawRead);
  250. }
  251. }
  252. internal static string Context_VersionNotSupported(object p0, object p1) {
  253. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_VersionNotSupported,p0,p1);
  254. }
  255. internal static string Context_SendingRequestEventArgsNotHttp {
  256. get {
  257. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_SendingRequestEventArgsNotHttp);
  258. }
  259. }
  260. internal static string Context_ChildResourceExists {
  261. get {
  262. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_ChildResourceExists);
  263. }
  264. }
  265. internal static string Context_EntityNotMediaLinkEntry {
  266. get {
  267. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_EntityNotMediaLinkEntry);
  268. }
  269. }
  270. internal static string Context_MLEWithoutSaveStream(object p0) {
  271. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_MLEWithoutSaveStream,p0);
  272. }
  273. internal static string Context_SetSaveStreamOnMediaEntryProperty(object p0) {
  274. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_SetSaveStreamOnMediaEntryProperty,p0);
  275. }
  276. internal static string Context_SetSaveStreamWithoutEditMediaLink {
  277. get {
  278. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Context_SetSaveStreamWithoutEditMediaLink);
  279. }
  280. }
  281. internal static string Collection_NullCollectionReference(object p0, object p1) {
  282. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Collection_NullCollectionReference,p0,p1);
  283. }
  284. internal static string ClientType_MissingOpenProperty(object p0, object p1) {
  285. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MissingOpenProperty,p0,p1);
  286. }
  287. internal static string Clienttype_MultipleOpenProperty(object p0) {
  288. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Clienttype_MultipleOpenProperty,p0);
  289. }
  290. internal static string ClientType_MissingProperty(object p0, object p1) {
  291. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MissingProperty,p0,p1);
  292. }
  293. internal static string ClientType_KeysMustBeSimpleTypes(object p0) {
  294. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_KeysMustBeSimpleTypes,p0);
  295. }
  296. internal static string ClientType_KeysOnDifferentDeclaredType(object p0) {
  297. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_KeysOnDifferentDeclaredType,p0);
  298. }
  299. internal static string ClientType_MissingMimeTypeProperty(object p0, object p1) {
  300. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MissingMimeTypeProperty,p0,p1);
  301. }
  302. internal static string ClientType_MissingMediaEntryProperty(object p0) {
  303. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MissingMediaEntryProperty,p0);
  304. }
  305. internal static string ClientType_NoSettableFields(object p0) {
  306. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_NoSettableFields,p0);
  307. }
  308. internal static string ClientType_MultipleImplementationNotSupported {
  309. get {
  310. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_MultipleImplementationNotSupported);
  311. }
  312. }
  313. internal static string ClientType_NullOpenProperties(object p0) {
  314. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_NullOpenProperties,p0);
  315. }
  316. internal static string ClientType_CollectionOfNonEntities {
  317. get {
  318. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_CollectionOfNonEntities);
  319. }
  320. }
  321. internal static string ClientType_Ambiguous(object p0, object p1) {
  322. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ClientType_Ambiguous,p0,p1);
  323. }
  324. internal static string DataServiceException_GeneralError {
  325. get {
  326. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceException_GeneralError);
  327. }
  328. }
  329. internal static string DataServiceRequest_FailGetCount {
  330. get {
  331. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceRequest_FailGetCount);
  332. }
  333. }
  334. internal static string Deserialize_GetEnumerator {
  335. get {
  336. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_GetEnumerator);
  337. }
  338. }
  339. internal static string Deserialize_Current(object p0, object p1) {
  340. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_Current,p0,p1);
  341. }
  342. internal static string Deserialize_MixedTextWithComment {
  343. get {
  344. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MixedTextWithComment);
  345. }
  346. }
  347. internal static string Deserialize_ExpectingSimpleValue {
  348. get {
  349. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_ExpectingSimpleValue);
  350. }
  351. }
  352. internal static string Deserialize_NotApplicationXml {
  353. get {
  354. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_NotApplicationXml);
  355. }
  356. }
  357. internal static string Deserialize_MismatchAtomLinkLocalSimple {
  358. get {
  359. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MismatchAtomLinkLocalSimple);
  360. }
  361. }
  362. internal static string Deserialize_MismatchAtomLinkFeedPropertyNotCollection(object p0) {
  363. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MismatchAtomLinkFeedPropertyNotCollection,p0);
  364. }
  365. internal static string Deserialize_MismatchAtomLinkEntryPropertyIsCollection(object p0) {
  366. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MismatchAtomLinkEntryPropertyIsCollection,p0);
  367. }
  368. internal static string Deserialize_UnknownMimeTypeSpecified(object p0) {
  369. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_UnknownMimeTypeSpecified,p0);
  370. }
  371. internal static string Deserialize_ExpectedEmptyMediaLinkEntryContent {
  372. get {
  373. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_ExpectedEmptyMediaLinkEntryContent);
  374. }
  375. }
  376. internal static string Deserialize_ContentPlusPropertiesNotAllowed {
  377. get {
  378. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_ContentPlusPropertiesNotAllowed);
  379. }
  380. }
  381. internal static string Deserialize_NoLocationHeader {
  382. get {
  383. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_NoLocationHeader);
  384. }
  385. }
  386. internal static string Deserialize_ServerException(object p0) {
  387. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_ServerException,p0);
  388. }
  389. internal static string Deserialize_MissingIdElement {
  390. get {
  391. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Deserialize_MissingIdElement);
  392. }
  393. }
  394. internal static string EpmClientType_PropertyIsComplex(object p0) {
  395. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmClientType_PropertyIsComplex,p0);
  396. }
  397. internal static string EpmClientType_PropertyIsPrimitive(object p0) {
  398. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmClientType_PropertyIsPrimitive,p0);
  399. }
  400. internal static string EpmSourceTree_InvalidSourcePath(object p0, object p1) {
  401. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmSourceTree_InvalidSourcePath,p0,p1);
  402. }
  403. internal static string EpmSourceTree_DuplicateEpmAttrsWithSameSourceName(object p0, object p1) {
  404. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmSourceTree_DuplicateEpmAttrsWithSameSourceName,p0,p1);
  405. }
  406. internal static string EpmSourceTree_InaccessiblePropertyOnType(object p0, object p1) {
  407. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmSourceTree_InaccessiblePropertyOnType,p0,p1);
  408. }
  409. internal static string EpmTargetTree_InvalidTargetPath(object p0) {
  410. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmTargetTree_InvalidTargetPath,p0);
  411. }
  412. internal static string EpmTargetTree_AttributeInMiddle(object p0) {
  413. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmTargetTree_AttributeInMiddle,p0);
  414. }
  415. internal static string EpmTargetTree_DuplicateEpmAttrsWithSameTargetName(object p0, object p1, object p2, object p3) {
  416. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EpmTargetTree_DuplicateEpmAttrsWithSameTargetName,p0,p1,p2,p3);
  417. }
  418. internal static string EntityPropertyMapping_EpmAttribute(object p0) {
  419. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EntityPropertyMapping_EpmAttribute,p0);
  420. }
  421. internal static string EntityPropertyMapping_TargetNamespaceUriNotValid(object p0) {
  422. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.EntityPropertyMapping_TargetNamespaceUriNotValid,p0);
  423. }
  424. internal static string HttpProcessUtility_ContentTypeMissing {
  425. get {
  426. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_ContentTypeMissing);
  427. }
  428. }
  429. internal static string HttpProcessUtility_MediaTypeMissingValue {
  430. get {
  431. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeMissingValue);
  432. }
  433. }
  434. internal static string HttpProcessUtility_MediaTypeRequiresSemicolonBeforeParameter {
  435. get {
  436. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeRequiresSemicolonBeforeParameter);
  437. }
  438. }
  439. internal static string HttpProcessUtility_MediaTypeRequiresSlash {
  440. get {
  441. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeRequiresSlash);
  442. }
  443. }
  444. internal static string HttpProcessUtility_MediaTypeRequiresSubType {
  445. get {
  446. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeRequiresSubType);
  447. }
  448. }
  449. internal static string HttpProcessUtility_MediaTypeUnspecified {
  450. get {
  451. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_MediaTypeUnspecified);
  452. }
  453. }
  454. internal static string HttpProcessUtility_EncodingNotSupported(object p0) {
  455. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_EncodingNotSupported,p0);
  456. }
  457. internal static string HttpProcessUtility_EscapeCharWithoutQuotes(object p0) {
  458. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_EscapeCharWithoutQuotes,p0);
  459. }
  460. internal static string HttpProcessUtility_EscapeCharAtEnd(object p0) {
  461. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_EscapeCharAtEnd,p0);
  462. }
  463. internal static string HttpProcessUtility_ClosingQuoteNotFound(object p0) {
  464. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.HttpProcessUtility_ClosingQuoteNotFound,p0);
  465. }
  466. internal static string MaterializeFromAtom_CountNotPresent {
  467. get {
  468. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_CountNotPresent);
  469. }
  470. }
  471. internal static string MaterializeFromAtom_CountFormatError {
  472. get {
  473. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_CountFormatError);
  474. }
  475. }
  476. internal static string MaterializeFromAtom_TopLevelLinkNotAvailable {
  477. get {
  478. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_TopLevelLinkNotAvailable);
  479. }
  480. }
  481. internal static string MaterializeFromAtom_CollectionKeyNotPresentInLinkTable {
  482. get {
  483. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_CollectionKeyNotPresentInLinkTable);
  484. }
  485. }
  486. internal static string MaterializeFromAtom_GetNestLinkForFlatCollection {
  487. get {
  488. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.MaterializeFromAtom_GetNestLinkForFlatCollection);
  489. }
  490. }
  491. internal static string Serializer_NullKeysAreNotSupported(object p0) {
  492. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Serializer_NullKeysAreNotSupported,p0);
  493. }
  494. internal static string Util_EmptyString {
  495. get {
  496. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Util_EmptyString);
  497. }
  498. }
  499. internal static string Util_EmptyArray {
  500. get {
  501. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Util_EmptyArray);
  502. }
  503. }
  504. internal static string Util_NullArrayElement {
  505. get {
  506. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.Util_NullArrayElement);
  507. }
  508. }
  509. internal static string ALinq_UnsupportedExpression(object p0) {
  510. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_UnsupportedExpression,p0);
  511. }
  512. internal static string ALinq_CouldNotConvert(object p0) {
  513. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CouldNotConvert,p0);
  514. }
  515. internal static string ALinq_MethodNotSupported(object p0) {
  516. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_MethodNotSupported,p0);
  517. }
  518. internal static string ALinq_UnaryNotSupported(object p0) {
  519. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_UnaryNotSupported,p0);
  520. }
  521. internal static string ALinq_BinaryNotSupported(object p0) {
  522. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_BinaryNotSupported,p0);
  523. }
  524. internal static string ALinq_ConstantNotSupported(object p0) {
  525. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ConstantNotSupported,p0);
  526. }
  527. internal static string ALinq_TypeBinaryNotSupported {
  528. get {
  529. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_TypeBinaryNotSupported);
  530. }
  531. }
  532. internal static string ALinq_ConditionalNotSupported {
  533. get {
  534. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ConditionalNotSupported);
  535. }
  536. }
  537. internal static string ALinq_ParameterNotSupported {
  538. get {
  539. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ParameterNotSupported);
  540. }
  541. }
  542. internal static string ALinq_MemberAccessNotSupported(object p0) {
  543. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_MemberAccessNotSupported,p0);
  544. }
  545. internal static string ALinq_LambdaNotSupported {
  546. get {
  547. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_LambdaNotSupported);
  548. }
  549. }
  550. internal static string ALinq_NewNotSupported {
  551. get {
  552. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_NewNotSupported);
  553. }
  554. }
  555. internal static string ALinq_MemberInitNotSupported {
  556. get {
  557. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_MemberInitNotSupported);
  558. }
  559. }
  560. internal static string ALinq_ListInitNotSupported {
  561. get {
  562. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ListInitNotSupported);
  563. }
  564. }
  565. internal static string ALinq_NewArrayNotSupported {
  566. get {
  567. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_NewArrayNotSupported);
  568. }
  569. }
  570. internal static string ALinq_InvocationNotSupported {
  571. get {
  572. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_InvocationNotSupported);
  573. }
  574. }
  575. internal static string ALinq_QueryOptionsOnlyAllowedOnLeafNodes {
  576. get {
  577. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_QueryOptionsOnlyAllowedOnLeafNodes);
  578. }
  579. }
  580. internal static string ALinq_CantExpand {
  581. get {
  582. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantExpand);
  583. }
  584. }
  585. internal static string ALinq_CantCastToUnsupportedPrimitive(object p0) {
  586. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantCastToUnsupportedPrimitive,p0);
  587. }
  588. internal static string ALinq_CantNavigateWithoutKeyPredicate {
  589. get {
  590. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantNavigateWithoutKeyPredicate);
  591. }
  592. }
  593. internal static string ALinq_CanOnlyApplyOneKeyPredicate {
  594. get {
  595. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CanOnlyApplyOneKeyPredicate);
  596. }
  597. }
  598. internal static string ALinq_CantTranslateExpression(object p0) {
  599. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantTranslateExpression,p0);
  600. }
  601. internal static string ALinq_TranslationError(object p0) {
  602. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_TranslationError,p0);
  603. }
  604. internal static string ALinq_CantAddQueryOption {
  605. get {
  606. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantAddQueryOption);
  607. }
  608. }
  609. internal static string ALinq_CantAddDuplicateQueryOption(object p0) {
  610. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantAddDuplicateQueryOption,p0);
  611. }
  612. internal static string ALinq_CantAddAstoriaQueryOption(object p0) {
  613. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantAddAstoriaQueryOption,p0);
  614. }
  615. internal static string ALinq_CantAddQueryOptionStartingWithDollarSign(object p0) {
  616. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantAddQueryOptionStartingWithDollarSign,p0);
  617. }
  618. internal static string ALinq_CantReferToPublicField(object p0) {
  619. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CantReferToPublicField,p0);
  620. }
  621. internal static string ALinq_QueryOptionsOnlyAllowedOnSingletons {
  622. get {
  623. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_QueryOptionsOnlyAllowedOnSingletons);
  624. }
  625. }
  626. internal static string ALinq_QueryOptionOutOfOrder(object p0, object p1) {
  627. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_QueryOptionOutOfOrder,p0,p1);
  628. }
  629. internal static string ALinq_CannotAddCountOption {
  630. get {
  631. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotAddCountOption);
  632. }
  633. }
  634. internal static string ALinq_CannotAddCountOptionConflict {
  635. get {
  636. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotAddCountOptionConflict);
  637. }
  638. }
  639. internal static string ALinq_ProjectionOnlyAllowedOnLeafNodes {
  640. get {
  641. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ProjectionOnlyAllowedOnLeafNodes);
  642. }
  643. }
  644. internal static string ALinq_ProjectionCanOnlyHaveOneProjection {
  645. get {
  646. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ProjectionCanOnlyHaveOneProjection);
  647. }
  648. }
  649. internal static string ALinq_ProjectionMemberAssignmentMismatch(object p0, object p1, object p2) {
  650. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ProjectionMemberAssignmentMismatch,p0,p1,p2);
  651. }
  652. internal static string ALinq_ExpressionNotSupportedInProjectionToEntity(object p0, object p1) {
  653. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ExpressionNotSupportedInProjectionToEntity,p0,p1);
  654. }
  655. internal static string ALinq_ExpressionNotSupportedInProjection(object p0, object p1) {
  656. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_ExpressionNotSupportedInProjection,p0,p1);
  657. }
  658. internal static string ALinq_CannotConstructKnownEntityTypes {
  659. get {
  660. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotConstructKnownEntityTypes);
  661. }
  662. }
  663. internal static string ALinq_CannotCreateConstantEntity {
  664. get {
  665. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotCreateConstantEntity);
  666. }
  667. }
  668. internal static string ALinq_PropertyNamesMustMatchInProjections(object p0, object p1) {
  669. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_PropertyNamesMustMatchInProjections,p0,p1);
  670. }
  671. internal static string ALinq_CanOnlyProjectTheLeaf {
  672. get {
  673. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CanOnlyProjectTheLeaf);
  674. }
  675. }
  676. internal static string ALinq_CannotProjectWithExplicitExpansion {
  677. get {
  678. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.ALinq_CannotProjectWithExplicitExpansion);
  679. }
  680. }
  681. internal static string DSKAttribute_MustSpecifyAtleastOnePropertyName {
  682. get {
  683. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DSKAttribute_MustSpecifyAtleastOnePropertyName);
  684. }
  685. }
  686. internal static string DataServiceCollection_LoadRequiresTargetCollectionObserved {
  687. get {
  688. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_LoadRequiresTargetCollectionObserved);
  689. }
  690. }
  691. internal static string DataServiceCollection_CannotStopTrackingChildCollection {
  692. get {
  693. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_CannotStopTrackingChildCollection);
  694. }
  695. }
  696. internal static string DataServiceCollection_OperationForTrackedOnly {
  697. get {
  698. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_OperationForTrackedOnly);
  699. }
  700. }
  701. internal static string DataServiceCollection_CannotDetermineContextFromItems {
  702. get {
  703. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_CannotDetermineContextFromItems);
  704. }
  705. }
  706. internal static string DataServiceCollection_InsertIntoTrackedButNotLoadedCollection {
  707. get {
  708. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataServiceCollection_InsertIntoTrackedButNotLoadedCollection);
  709. }
  710. }
  711. internal static string DataBinding_DataServiceCollectionArgumentMustHaveEntityType(object p0) {
  712. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_DataServiceCollectionArgumentMustHaveEntityType,p0);
  713. }
  714. internal static string DataBinding_CollectionPropertySetterValueHasObserver(object p0, object p1) {
  715. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_CollectionPropertySetterValueHasObserver,p0,p1);
  716. }
  717. internal static string DataBinding_CollectionChangedUnknownAction(object p0) {
  718. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_CollectionChangedUnknownAction,p0);
  719. }
  720. internal static string DataBinding_BindingOperation_DetachedSource {
  721. get {
  722. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_BindingOperation_DetachedSource);
  723. }
  724. }
  725. internal static string DataBinding_BindingOperation_ArrayItemNull(object p0) {
  726. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_BindingOperation_ArrayItemNull,p0);
  727. }
  728. internal static string DataBinding_BindingOperation_ArrayItemNotEntity(object p0) {
  729. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_BindingOperation_ArrayItemNotEntity,p0);
  730. }
  731. internal static string DataBinding_Util_UnknownEntitySetName(object p0) {
  732. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_Util_UnknownEntitySetName,p0);
  733. }
  734. internal static string DataBinding_EntityAlreadyInCollection(object p0) {
  735. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_EntityAlreadyInCollection,p0);
  736. }
  737. internal static string DataBinding_NotifyPropertyChangedNotImpl(object p0) {
  738. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_NotifyPropertyChangedNotImpl,p0);
  739. }
  740. internal static string DataBinding_ComplexObjectAssociatedWithMultipleEntities(object p0) {
  741. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.DataBinding_ComplexObjectAssociatedWithMultipleEntities,p0);
  742. }
  743. internal static string AtomParser_FeedUnexpected {
  744. get {
  745. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_FeedUnexpected);
  746. }
  747. }
  748. internal static string AtomParser_PagingLinkOutsideOfFeed {
  749. get {
  750. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_PagingLinkOutsideOfFeed);
  751. }
  752. }
  753. internal static string AtomParser_ManyFeedCounts {
  754. get {
  755. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_ManyFeedCounts);
  756. }
  757. }
  758. internal static string AtomParser_FeedCountNotUnderFeed {
  759. get {
  760. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_FeedCountNotUnderFeed);
  761. }
  762. }
  763. internal static string AtomParser_UnexpectedContentUnderExpandedLink {
  764. get {
  765. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomParser_UnexpectedContentUnderExpandedLink);
  766. }
  767. }
  768. internal static string AtomMaterializer_CannotAssignNull(object p0, object p1) {
  769. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_CannotAssignNull,p0,p1);
  770. }
  771. internal static string AtomMaterializer_DuplicatedNextLink {
  772. get {
  773. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_DuplicatedNextLink);
  774. }
  775. }
  776. internal static string AtomMaterializer_EntryIntoCollectionMismatch(object p0, object p1) {
  777. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_EntryIntoCollectionMismatch,p0,p1);
  778. }
  779. internal static string AtomMaterializer_EntryToAccessIsNull(object p0) {
  780. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_EntryToAccessIsNull,p0);
  781. }
  782. internal static string AtomMaterializer_EntryToInitializeIsNull(object p0) {
  783. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_EntryToInitializeIsNull,p0);
  784. }
  785. internal static string AtomMaterializer_ProjectEntityTypeMismatch(object p0, object p1, object p2) {
  786. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_ProjectEntityTypeMismatch,p0,p1,p2);
  787. }
  788. internal static string AtomMaterializer_LinksMissingHref {
  789. get {
  790. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_LinksMissingHref);
  791. }
  792. }
  793. internal static string AtomMaterializer_PropertyMissing(object p0) {
  794. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_PropertyMissing,p0);
  795. }
  796. internal static string AtomMaterializer_PropertyMissingFromEntry(object p0, object p1) {
  797. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_PropertyMissingFromEntry,p0,p1);
  798. }
  799. internal static string AtomMaterializer_PropertyNotExpectedEntry(object p0, object p1) {
  800. return System.Data.Services.Client.TextRes.GetString(System.Data.Services.Client.TextRes.AtomMaterializer_PropertyNotExpectedEntry,p0,p1);
  801. }
  802. }
  803. internal static partial class Error {
  804. internal static Exception ArgumentNull(string paramName) {
  805. return new ArgumentNullException(paramName);
  806. }
  807. internal static Exception ArgumentOutOfRange(string paramName) {
  808. return new ArgumentOutOfRangeException(paramName);
  809. }
  810. internal static Exception NotImplemented() {
  811. return new NotImplementedException();
  812. }
  813. internal static Exception NotSupported() {
  814. return new NotSupportedException();
  815. }
  816. }
  817. }