You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1039 lines
60 KiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Web.WebPages</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Internal.Web.Utils.CommonResources">
  8. <summary>
  9. A strongly-typed resource class, for looking up localized strings, etc.
  10. </summary>
  11. </member>
  12. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.ResourceManager">
  13. <summary>
  14. Returns the cached ResourceManager instance used by this class.
  15. </summary>
  16. </member>
  17. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Culture">
  18. <summary>
  19. Overrides the current thread's CurrentUICulture property for all
  20. resource lookups using this strongly typed resource class.
  21. </summary>
  22. </member>
  23. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Argument_Cannot_Be_Null_Or_Empty">
  24. <summary>
  25. Looks up a localized string similar to Value cannot be null or an empty string..
  26. </summary>
  27. </member>
  28. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Argument_Must_Be_Between">
  29. <summary>
  30. Looks up a localized string similar to Value must be between {0} and {1}..
  31. </summary>
  32. </member>
  33. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Argument_Must_Be_Enum_Member">
  34. <summary>
  35. Looks up a localized string similar to Value must be a value from the &quot;{0}&quot; enumeration..
  36. </summary>
  37. </member>
  38. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Argument_Must_Be_GreaterThan">
  39. <summary>
  40. Looks up a localized string similar to Value must be greater than {0}..
  41. </summary>
  42. </member>
  43. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Argument_Must_Be_GreaterThanOrEqualTo">
  44. <summary>
  45. Looks up a localized string similar to Value must be greater than or equal to {0}..
  46. </summary>
  47. </member>
  48. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Argument_Must_Be_LessThan">
  49. <summary>
  50. Looks up a localized string similar to Value must be less than {0}..
  51. </summary>
  52. </member>
  53. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Argument_Must_Be_LessThanOrEqualTo">
  54. <summary>
  55. Looks up a localized string similar to Value must be less than or equal to {0}..
  56. </summary>
  57. </member>
  58. <member name="P:Microsoft.Internal.Web.Utils.CommonResources.Argument_Must_Be_Null_Or_Non_Empty">
  59. <summary>
  60. Looks up a localized string similar to Value cannot be an empty string. It must either be null or a non-empty string..
  61. </summary>
  62. </member>
  63. <member name="T:System.Collections.Generic.CollectionExtensions">
  64. <summary>
  65. Helper extension methods for fast use of collections.
  66. </summary>
  67. </member>
  68. <member name="M:System.Collections.Generic.CollectionExtensions.AppendAndReallocate``1(``0[],``0)">
  69. <summary>
  70. Return a new array with the value added to the end. Slow and best suited to long lived arrays with few writes relative to reads.
  71. </summary>
  72. </member>
  73. <member name="M:System.Collections.Generic.CollectionExtensions.AsArray``1(System.Collections.Generic.IEnumerable{``0})">
  74. <summary>
  75. Return the enumerable as an Array, copying if required. Optimized for common case where it is an Array.
  76. Avoid mutating the return value.
  77. </summary>
  78. </member>
  79. <member name="M:System.Collections.Generic.CollectionExtensions.AsCollection``1(System.Collections.Generic.IEnumerable{``0})">
  80. <summary>
  81. Return the enumerable as a Collection of T, copying if required. Optimized for the common case where it is
  82. a Collection of T and avoiding a copy if it implements IList of T. Avoid mutating the return value.
  83. </summary>
  84. </member>
  85. <member name="M:System.Collections.Generic.CollectionExtensions.AsIList``1(System.Collections.Generic.IEnumerable{``0})">
  86. <summary>
  87. Return the enumerable as a IList of T, copying if required. Avoid mutating the return value.
  88. </summary>
  89. </member>
  90. <member name="M:System.Collections.Generic.CollectionExtensions.AsList``1(System.Collections.Generic.IEnumerable{``0})">
  91. <summary>
  92. Return the enumerable as a List of T, copying if required. Optimized for common case where it is an List of T
  93. or a ListWrapperCollection of T. Avoid mutating the return value.
  94. </summary>
  95. </member>
  96. <member name="M:System.Collections.Generic.CollectionExtensions.RemoveFrom``1(System.Collections.Generic.List{``0},System.Int32)">
  97. <summary>
  98. Remove values from the list starting at the index start.
  99. </summary>
  100. </member>
  101. <member name="M:System.Collections.Generic.CollectionExtensions.SingleDefaultOrError``2(System.Collections.Generic.IList{``0},System.Action{``1},``1)">
  102. <summary>
  103. Return the only value from list, the type's default value if empty, or call the errorAction for 2 or more.
  104. </summary>
  105. </member>
  106. <member name="M:System.Collections.Generic.CollectionExtensions.SingleOfTypeDefaultOrError``3(System.Collections.Generic.IList{``0},System.Action{``2},``2)">
  107. <summary>
  108. Returns a single value in list matching type TMatch if there is only one, null if there are none of type TMatch or calls the
  109. errorAction with errorArg1 if there is more than one.
  110. </summary>
  111. </member>
  112. <member name="M:System.Collections.Generic.CollectionExtensions.ToArrayWithoutNulls``1(System.Collections.Generic.ICollection{``0})">
  113. <summary>
  114. Convert an ICollection to an array, removing null values. Fast path for case where there are no null values.
  115. </summary>
  116. </member>
  117. <member name="M:System.Collections.Generic.CollectionExtensions.ToDictionaryFast``2(``1[],System.Func{``1,``0},System.Collections.Generic.IEqualityComparer{``0})">
  118. <summary>
  119. Convert the array to a Dictionary using the keySelector to extract keys from values and the specified comparer. Optimized for array input.
  120. </summary>
  121. </member>
  122. <member name="M:System.Collections.Generic.CollectionExtensions.ToDictionaryFast``2(System.Collections.Generic.IList{``1},System.Func{``1,``0},System.Collections.Generic.IEqualityComparer{``0})">
  123. <summary>
  124. Convert the list to a Dictionary using the keySelector to extract keys from values and the specified comparer. Optimized for IList of T input with fast path for array.
  125. </summary>
  126. </member>
  127. <member name="M:System.Collections.Generic.CollectionExtensions.ToDictionaryFast``2(System.Collections.Generic.IEnumerable{``1},System.Func{``1,``0},System.Collections.Generic.IEqualityComparer{``0})">
  128. <summary>
  129. Convert the enumerable to a Dictionary using the keySelector to extract keys from values and the specified comparer. Fast paths for array and IList of T.
  130. </summary>
  131. </member>
  132. <member name="M:System.Collections.Generic.CollectionExtensions.ToDictionaryFastNoCheck``2(System.Collections.Generic.IList{``1},System.Func{``1,``0},System.Collections.Generic.IEqualityComparer{``0})">
  133. <summary>
  134. Convert the list to a Dictionary using the keySelector to extract keys from values and the specified comparer. Optimized for IList of T input. No checking for other types.
  135. </summary>
  136. </member>
  137. <member name="T:System.Collections.Generic.Empty`1">
  138. <summary>
  139. Helper to provide empty instances with minimal allocation.
  140. </summary>
  141. </member>
  142. <member name="P:System.Collections.Generic.Empty`1.Array">
  143. <summary>
  144. Returns a zero length array of type. Only allocates once per distinct type.
  145. </summary>
  146. </member>
  147. <member name="T:System.Collections.ObjectModel.ListWrapperCollection`1">
  148. <summary>
  149. A class that inherits from Collection of T but also exposes its underlying data as List of T for performance.
  150. </summary>
  151. </member>
  152. <member name="T:System.Web.PathHelpers">
  153. <summary>
  154. Helpers for working with IO paths.
  155. </summary>
  156. </member>
  157. <member name="M:System.Web.PathHelpers.EndsWithExtension(System.String,System.String)">
  158. <summary>
  159. Returns whether the path has the specified file extension.
  160. </summary>
  161. </member>
  162. <member name="M:System.Web.WebPages.ApplicationPart.ResolveVirtualPath(System.String,System.String,System.String)">
  163. <summary>
  164. Expands a virtual path by replacing a leading "@" with the application part root
  165. or combining it with the specified baseVirtualPath
  166. </summary>
  167. </member>
  168. <member name="M:System.Web.WebPages.WebPageExecutingBase.NormalizeLayoutPagePath(System.String)">
  169. <summary>
  170. Normalizes path relative to the current virtual path and throws if a file does not exist at the location.
  171. </summary>
  172. </member>
  173. <member name="T:System.Web.WebPages.BrowserOverrideStore">
  174. <summary>
  175. The current BrowserOverrideStore is used to get and set the user agent of a request.
  176. For an example see CookieBasedBrowserOverrideStore.
  177. </summary>
  178. </member>
  179. <member name="P:System.Web.WebPages.BrowserOverrideStores.Current">
  180. <summary>
  181. The current BrowserOverrideStore
  182. </summary>
  183. </member>
  184. <member name="T:System.Web.WebPages.BrowserOverride">
  185. <summary>
  186. BrowserOverrides can be used by BrowserHelpers to override the browser for a particular request.
  187. </summary>
  188. </member>
  189. <member name="T:System.Web.WebPages.BuildManagerWrapper">
  190. <summary>
  191. Wraps the caching and instantiation of paths of the BuildManager.
  192. In case of precompiled non-updateable sites, the only way to verify if a file exists is to call BuildManager.GetObjectFactory. However this method is less performant than
  193. VirtualPathProvider.FileExists which is used for all other scenarios. In this class, we optimize for the first scenario by storing the results of GetObjectFactory for a
  194. long duration.
  195. </summary>
  196. </member>
  197. <member name="M:System.Web.WebPages.BuildManagerWrapper.Exists(System.String)">
  198. <summary>
  199. Determines if a page exists in the website.
  200. This method switches between a long duration cache or a short duration FileExistenceCache depending on whether the site is precompiled.
  201. This is an optimization because BuildManager.GetObjectFactory is comparably slower than performing VirtualPathFactory.Exists
  202. </summary>
  203. </member>
  204. <member name="M:System.Web.WebPages.BuildManagerWrapper.IsNonUpdatablePrecompiledApp">
  205. <summary>
  206. An app's is precompiled for our purposes if
  207. (a) it has a PreCompiledApp.config file in the site root,
  208. (b) The PreCompiledApp.config says that the app is not Updatable.
  209. </summary>
  210. <remarks>
  211. This code is based on System.Web.DynamicData.Misc.IsNonUpdatablePrecompiledAppNoCache (DynamicData)
  212. </remarks>
  213. </member>
  214. <member name="M:System.Web.WebPages.BuildManagerWrapper.ExistsInVpp(System.String)">
  215. <summary>
  216. Determines if a site exists in the VirtualPathProvider.
  217. Results of hits are cached for a very short amount of time in the FileExistenceCache.
  218. </summary>
  219. </member>
  220. <member name="M:System.Web.WebPages.BuildManagerWrapper.GetObjectFactory(System.String)">
  221. <summary>
  222. Determines if an ObjectFactory exists for the virtualPath.
  223. The BuildManager complains if we pass in extensions that aren't registered for compilation. So we ensure that the virtual path is not
  224. extensionless and that it is one of the extension
  225. </summary>
  226. </member>
  227. <member name="M:System.Web.WebPages.BuildManagerWrapper.IsPathExtensionSupported(System.String)">
  228. <summary>
  229. Determines if the extension is one of the extensions registered with WebPageHttpHandler.
  230. </summary>
  231. </member>
  232. <member name="M:System.Web.WebPages.BuildManagerWrapper.GetKeyFromVirtualPath(System.String)">
  233. <summary>
  234. Creates a reasonably unique key for a given virtual path by concatenating it with a Guid.
  235. </summary>
  236. </member>
  237. <member name="T:System.Web.WebPages.CookieBrowserOverrideStore">
  238. <summary>
  239. The default BrowserOverrideStore. Gets overridden user agent for a request from a cookie.
  240. Creates a cookie to set the overridden user agent.
  241. </summary>
  242. </member>
  243. <member name="M:System.Web.WebPages.CookieBrowserOverrideStore.#ctor">
  244. <summary>
  245. Creates the BrowserOverrideStore setting any browser override cookie to expire in 7 days.
  246. </summary>
  247. </member>
  248. <member name="M:System.Web.WebPages.CookieBrowserOverrideStore.#ctor(System.Int32)">
  249. <summary>
  250. Constructor to control the expiration of the browser override cookie.
  251. </summary>
  252. </member>
  253. <member name="M:System.Web.WebPages.CookieBrowserOverrideStore.GetOverriddenUserAgent(System.Web.HttpContextBase)">
  254. <summary>
  255. Looks for a user agent by searching for the browser override cookie. If no cookie is found
  256. returns null.
  257. </summary>
  258. </member>
  259. <member name="M:System.Web.WebPages.CookieBrowserOverrideStore.SetOverriddenUserAgent(System.Web.HttpContextBase,System.String)">
  260. <summary>
  261. Adds a browser override cookie with the set user agent to the response of the current request.
  262. If the user agent is null the browser override cookie is set to expire, otherwise its expiration is set
  263. to daysToExpire, specified when CookieBasedOverrideStore is created.
  264. </summary>
  265. </member>
  266. <member name="T:System.Web.WebPages.DisplayInfo">
  267. <summary>
  268. DisplayInfo wraps the resolved file path and IDisplayMode for a request and path.
  269. The returned IDisplayMode can be used to resolve other page elements for the request.
  270. </summary>
  271. </member>
  272. <member name="P:System.Web.WebPages.DisplayInfo.DisplayMode">
  273. <summary>
  274. The Display Mode used to resolve a virtual path.
  275. </summary>
  276. </member>
  277. <member name="P:System.Web.WebPages.DisplayInfo.FilePath">
  278. <summary>
  279. Resolved path of a file that exists.
  280. </summary>
  281. </member>
  282. <member name="M:System.Web.WebPages.DisplayModeProvider.GetAvailableDisplayModesForContext(System.Web.HttpContextBase,System.Web.WebPages.IDisplayMode)">
  283. <summary>
  284. Returns any IDisplayMode that can handle the given request.
  285. </summary>
  286. </member>
  287. <member name="M:System.Web.WebPages.DisplayModeProvider.GetDisplayInfoForVirtualPath(System.String,System.Web.HttpContextBase,System.Func{System.String,System.Boolean},System.Web.WebPages.IDisplayMode)">
  288. <summary>
  289. Returns DisplayInfo from the first IDisplayMode in Modes that can handle the given request and locate the virtual path.
  290. If currentDisplayMode is not null and RequireConsistentDisplayMode is set to true the search for DisplayInfo will only
  291. start with the currentDisplayMode.
  292. </summary>
  293. </member>
  294. <member name="P:System.Web.WebPages.DisplayModeProvider.RequireConsistentDisplayMode">
  295. <summary>
  296. Restricts the search for Display Info to Display Modes either equal to or following the current
  297. Display Mode in Modes. For example, a page being rendered in the Default Display Mode will not
  298. display Mobile partial views in order to achieve a consistent look and feel.
  299. </summary>
  300. </member>
  301. <member name="P:System.Web.WebPages.DisplayModeProvider.Modes">
  302. <summary>
  303. All Display Modes that are available to handle a request.
  304. </summary>
  305. </member>
  306. <member name="T:System.Web.WebPages.BrowserHelpers">
  307. <summary>
  308. Extension methods used to determine what browser a visitor wants to be seen as using.
  309. </summary>
  310. </member>
  311. <member name="F:System.Web.WebPages.BrowserHelpers.DesktopUserAgent">
  312. <summary>
  313. Stock IE6 user agent string
  314. </summary>
  315. </member>
  316. <member name="F:System.Web.WebPages.BrowserHelpers.MobileUserAgent">
  317. <summary>
  318. Stock Windows Mobile 6.0 user agent string
  319. </summary>
  320. </member>
  321. <member name="M:System.Web.WebPages.BrowserHelpers.ClearOverriddenBrowser(System.Web.HttpContextBase)">
  322. <summary>
  323. Clears the set browser for the request. After clearing the browser the overridden browser will be the browser for the request.
  324. </summary>
  325. </member>
  326. <member name="M:System.Web.WebPages.BrowserHelpers.GetOverriddenBrowser(System.Web.HttpContextBase)">
  327. <summary>
  328. Gets the overridden browser for the request based on the overridden user agent.
  329. If no overridden user agent is set, returns the browser for the request.
  330. </summary>
  331. </member>
  332. <member name="M:System.Web.WebPages.BrowserHelpers.GetOverriddenBrowser(System.Web.HttpContextBase,System.Func{System.String,System.Web.HttpBrowserCapabilitiesBase})">
  333. <summary>
  334. Internal GetOverriddenBrowser overload to allow the browser creation function to changed. Defaults to CreateOverridenBrowser if createBrowser is null.
  335. </summary>
  336. </member>
  337. <member name="M:System.Web.WebPages.BrowserHelpers.GetOverriddenUserAgent(System.Web.HttpContextBase)">
  338. <summary>
  339. Gets the overridden user agent for the request. If no overridden user agent is set, returns the user agent for the request.
  340. </summary>
  341. </member>
  342. <member name="M:System.Web.WebPages.BrowserHelpers.GetVaryByCustomStringForOverriddenBrowser(System.Web.HttpContext)">
  343. <summary>
  344. Gets a string that varies based upon the type of the browser. Can be used to override
  345. System.Web.HttpApplication.GetVaryByCustomString to differentiate cache keys based on
  346. the overridden browser.
  347. </summary>
  348. </member>
  349. <member name="M:System.Web.WebPages.BrowserHelpers.GetVaryByCustomStringForOverriddenBrowser(System.Web.HttpContextBase)">
  350. <summary>
  351. Gets a string that varies based upon the type of the browser. Can be used to override
  352. System.Web.HttpApplication.GetVaryByCustomString to differentiate cache keys based on
  353. the overridden browser.
  354. </summary>
  355. </member>
  356. <member name="M:System.Web.WebPages.BrowserHelpers.SetOverriddenBrowser(System.Web.HttpContextBase,System.Web.WebPages.BrowserOverride)">
  357. <summary>
  358. Sets the overridden user agent for the request using a BrowserOverride.
  359. </summary>
  360. </member>
  361. <member name="M:System.Web.WebPages.BrowserHelpers.SetOverriddenBrowser(System.Web.HttpContextBase,System.String)">
  362. <summary>
  363. Sets the overridden user agent for the request using a string
  364. </summary>
  365. </member>
  366. <member name="T:System.Web.Helpers.AntiForgeryConfig">
  367. <summary>
  368. Provides programmatic configuration for the anti-forgery token system.
  369. </summary>
  370. </member>
  371. <member name="P:System.Web.Helpers.AntiForgeryConfig.AdditionalDataProvider">
  372. <summary>
  373. Specifies an object that can provide additional data to put into all
  374. generated tokens and that can validate additional data in incoming
  375. tokens.
  376. </summary>
  377. </member>
  378. <member name="P:System.Web.Helpers.AntiForgeryConfig.CookieName">
  379. <summary>
  380. Specifies the name of the cookie that is used by the anti-forgery
  381. system.
  382. </summary>
  383. <remarks>
  384. If an explicit name is not provided, the system will automatically
  385. generate a name.
  386. </remarks>
  387. </member>
  388. <member name="P:System.Web.Helpers.AntiForgeryConfig.RequireSsl">
  389. <summary>
  390. Specifies whether SSL is required for the anti-forgery system
  391. to operate. If this setting is 'true' and a non-SSL request
  392. comes into the system, all anti-forgery APIs will fail.
  393. </summary>
  394. </member>
  395. <member name="P:System.Web.Helpers.AntiForgeryConfig.SuppressXFrameOptionsHeader">
  396. <summary>
  397. Specifies whether to suppress the generation of X-Frame-Options header
  398. which is used to prevent ClickJacking. By default, the X-Frame-Options
  399. header is generated with the value SAMEORIGIN. If this setting is 'true',
  400. the X-Frame-Options header will not be generated for the response.
  401. </summary>
  402. </member>
  403. <member name="P:System.Web.Helpers.AntiForgeryConfig.SuppressIdentityHeuristicChecks">
  404. <summary>
  405. Specifies whether the anti-forgery system should skip checking
  406. for conditions that might indicate misuse of the system. Please
  407. use caution when setting this switch, as improper use could open
  408. security holes in the application.
  409. </summary>
  410. <remarks>
  411. Setting this switch will disable several checks, including:
  412. - Identity.IsAuthenticated = true without Identity.Name being set
  413. - special-casing claims-based identities
  414. </remarks>
  415. </member>
  416. <member name="P:System.Web.Helpers.AntiForgeryConfig.UniqueClaimTypeIdentifier">
  417. <summary>
  418. If claims-based authorization is in use, specifies the claim
  419. type from the identity that is used to uniquely identify the
  420. user. If this property is set, all claims-based identities
  421. <em>must</em> return unique values for this claim type.
  422. </summary>
  423. <remarks>
  424. If claims-based authorization is in use and this property has
  425. not been set, the anti-forgery system will automatically look
  426. for claim types "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"
  427. and "http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider".
  428. </remarks>
  429. </member>
  430. <member name="T:System.Web.Helpers.IAntiForgeryAdditionalDataProvider">
  431. <summary>
  432. Allows providing or validating additional custom data for anti-forgery tokens.
  433. For example, the developer could use this to supply a nonce when the token is
  434. generated, then he could validate the nonce when the token is validated.
  435. </summary>
  436. <remarks>
  437. The anti-forgery system already embeds the client's username within the
  438. generated tokens. This interface provides and consumes <em>supplemental</em>
  439. data. If an incoming anti-forgery token contains supplemental data but no
  440. additional data provider is configured, the supplemental data will not be
  441. validated.
  442. </remarks>
  443. </member>
  444. <member name="M:System.Web.Helpers.IAntiForgeryAdditionalDataProvider.GetAdditionalData(System.Web.HttpContextBase)">
  445. <summary>
  446. Provides additional data to be stored for the anti-forgery tokens generated
  447. during this request.
  448. </summary>
  449. <param name="context">Information about the current request.</param>
  450. <returns>Supplemental data to embed within the anti-forgery token.</returns>
  451. </member>
  452. <member name="M:System.Web.Helpers.IAntiForgeryAdditionalDataProvider.ValidateAdditionalData(System.Web.HttpContextBase,System.String)">
  453. <summary>
  454. Validates additional data that was embedded inside an incoming anti-forgery
  455. token.
  456. </summary>
  457. <param name="context">Information about the current request.</param>
  458. <param name="additionalData">Supplemental data that was embedded within the token.</param>
  459. <returns>True if the data is valid; false if the data is invalid.</returns>
  460. </member>
  461. <member name="T:System.Web.WebPages.IDisplayMode">
  462. <summary>
  463. An interface that provides DisplayInfo for a virtual path and request. An IDisplayMode may modify the virtual path before checking
  464. if it exists. CanHandleContext is called to determine if the Display Mode is available to return display info for the request.
  465. GetDisplayInfo should return null if the virtual path does not exist. For an example implementation, see DefaultDisplayMode.
  466. DisplayModeId is used to cache the non-null result of a call to GetDisplayInfo and should be unique for each Display Mode. See
  467. DisplayModes for the built-in Display Modes and their ids.
  468. </summary>
  469. </member>
  470. <member name="T:System.Web.WebPages.DefaultDisplayMode">
  471. <summary>
  472. The <see cref="T:System.Web.WebPages.DefaultDisplayMode"/> can take any suffix and determine if there is a corresponding
  473. file that exists given a path and request by transforming the path to contain the suffix.
  474. Add a new DefaultDisplayMode to the Modes collection to handle a new suffix or inherit from
  475. DefaultDisplayMode to provide custom logic to transform paths with a suffix.
  476. </summary>
  477. </member>
  478. <member name="M:System.Web.WebPages.DefaultDisplayMode.GetDisplayInfo(System.Web.HttpContextBase,System.String,System.Func{System.String,System.Boolean})">
  479. <summary>
  480. Returns DisplayInfo with the transformed path if it exists.
  481. </summary>
  482. </member>
  483. <member name="M:System.Web.WebPages.DefaultDisplayMode.TransformPath(System.String,System.String)">
  484. <summary>
  485. Transforms paths according to the following rules:
  486. \some\path.blah\file.txt.zip -> \some\path.blah\file.txt.suffix.zip
  487. \some\path.blah\file -> \some\path.blah\file.suffix
  488. </summary>
  489. </member>
  490. <member name="P:System.Web.WebPages.DefaultDisplayMode.ContextCondition">
  491. <summary>
  492. When set, the <see cref="T:System.Web.WebPages.DefaultDisplayMode"/> will only be available to return Display Info for a request
  493. if the ContextCondition evaluates to true.
  494. </summary>
  495. </member>
  496. <member name="T:System.Web.WebPages.FileExistenceCache">
  497. <summary>
  498. This class caches the result of VirtualPathProvider.FileExists for a short
  499. period of time, and recomputes it if necessary.
  500. The default VPP MapPathBasedVirtualPathProvider caches the result of
  501. the FileExists call with the appropriate dependencies, so it is less
  502. expensive on subsequent calls, but it still needs to do MapPath which can
  503. take quite some time.
  504. </summary>
  505. </member>
  506. <member name="T:System.Web.Helpers.AntiForgery">
  507. <summary>
  508. Provides access to the anti-forgery system, which provides protection against
  509. Cross-site Request Forgery (XSRF, also called CSRF) attacks.
  510. </summary>
  511. </member>
  512. <member name="M:System.Web.Helpers.AntiForgery.GetHtml">
  513. <summary>
  514. Generates an anti-forgery token for this request. This token can
  515. be validated by calling the Validate() method.
  516. </summary>
  517. <returns>An HTML string corresponding to an &lt;input type="hidden"&gt;
  518. element. This element should be put inside a &lt;form&gt;.</returns>
  519. <remarks>
  520. This method has a side effect: it may set a response cookie.
  521. </remarks>
  522. </member>
  523. <member name="M:System.Web.Helpers.AntiForgery.GetTokens(System.String,System.String@,System.String@)">
  524. <summary>
  525. Generates an anti-forgery token pair (cookie and form token) for this request.
  526. This method is similar to GetHtml(), but this method gives the caller control
  527. over how to persist the returned values. To validate these tokens, call the
  528. appropriate overload of Validate.
  529. </summary>
  530. <param name="oldCookieToken">The anti-forgery token - if any - that already existed
  531. for this request. May be null. The anti-forgery system will try to reuse this cookie
  532. value when generating a matching form token.</param>
  533. <param name="newCookieToken">Will contain a new cookie value if the old cookie token
  534. was null or invalid. If this value is non-null when the method completes, the caller
  535. must persist this value in the form of a response cookie, and the existing cookie value
  536. should be discarded. If this value is null when the method completes, the existing
  537. cookie value was valid and needn't be modified.</param>
  538. <param name="formToken">The value that should be stored in the &lt;form&gt;. The caller
  539. should take care not to accidentally swap the cookie and form tokens.</param>
  540. <remarks>
  541. Unlike the GetHtml() method, this method has no side effect. The caller
  542. is responsible for setting the response cookie and injecting the returned
  543. form token as appropriate.
  544. </remarks>
  545. </member>
  546. <member name="M:System.Web.Helpers.AntiForgery.Validate">
  547. <summary>
  548. Validates an anti-forgery token that was supplied for this request.
  549. The anti-forgery token may be generated by calling GetHtml().
  550. </summary>
  551. <remarks>
  552. Throws an HttpAntiForgeryException if validation fails.
  553. </remarks>
  554. </member>
  555. <member name="M:System.Web.Helpers.AntiForgery.Validate(System.String,System.String)">
  556. <summary>
  557. Validates an anti-forgery token pair that was generated by the GetTokens method.
  558. </summary>
  559. <param name="cookieToken">The token that was supplied in the request cookie.</param>
  560. <param name="formToken">The token that was supplied in the request form body.</param>
  561. <remarks>
  562. Throws an HttpAntiForgeryException if validation fails.
  563. </remarks>
  564. </member>
  565. <member name="T:System.Web.WebPages.RequestBrowserOverrideStore">
  566. <summary>
  567. RequestBrowserOverrideStore simply returns the user agent of the current request.
  568. </summary>
  569. </member>
  570. <member name="M:System.Web.WebPages.PropertyHelper.#ctor(System.Reflection.PropertyInfo)">
  571. <summary>
  572. Initializes a fast property helper. This constructor does not cache the helper.
  573. </summary>
  574. </member>
  575. <member name="M:System.Web.WebPages.PropertyHelper.MakeFastPropertySetter``1(System.Reflection.PropertyInfo)">
  576. <summary>
  577. Creates a single fast property setter. The result is not cached.
  578. </summary>
  579. <param name="propertyInfo">propertyInfo to extract the getter for.</param>
  580. <returns>a fast setter.</returns>
  581. <remarks>This method is more memory efficient than a dynamically compiled lambda, and about the same speed.</remarks>
  582. </member>
  583. <member name="M:System.Web.WebPages.PropertyHelper.GetProperties(System.Object)">
  584. <summary>
  585. Creates and caches fast property helpers that expose getters for every public get property on the underlying type.
  586. </summary>
  587. <param name="instance">the instance to extract property accessors for.</param>
  588. <returns>a cached array of all public property getters from the underlying type of this instance.</returns>
  589. </member>
  590. <member name="M:System.Web.WebPages.PropertyHelper.MakeFastPropertyGetter(System.Reflection.PropertyInfo)">
  591. <summary>
  592. Creates a single fast property getter. The result is not cached.
  593. </summary>
  594. <param name="propertyInfo">propertyInfo to extract the getter for.</param>
  595. <returns>a fast getter.</returns>
  596. <remarks>This method is more memory efficient than a dynamically compiled lambda, and about the same speed.</remarks>
  597. </member>
  598. <member name="M:System.Web.WebPages.TypeHelper.ObjectToDictionary(System.Object)">
  599. <summary>
  600. Given an object of anonymous type, add each property as a key and associated with its value to a dictionary.
  601. This helper will cache accessors and types, and is intended when the anonymous object is accessed multiple
  602. times throughout the lifetime of the web application.
  603. </summary>
  604. </member>
  605. <member name="M:System.Web.WebPages.TypeHelper.ObjectToDictionaryUncached(System.Object)">
  606. <summary>
  607. Given an object of anonymous type, add each property as a key and associated with its value to a dictionary.
  608. This helper will not cache accessors and types, and is intended when the anonymous object is accessed once
  609. or very few times throughout the lifetime of the web application.
  610. </summary>
  611. </member>
  612. <member name="M:System.Web.WebPages.TypeHelper.AddAnonymousObjectToDictionary(System.Collections.Generic.IDictionary{System.String,System.Object},System.Object)">
  613. <summary>
  614. Given an object of anonymous type, add each property as a key and associated with its value to the given dictionary.
  615. </summary>
  616. </member>
  617. <member name="M:System.Web.WebPages.TypeHelper.IsAnonymousType(System.Type)">
  618. <remarks>This code is copied from http://www.liensberger.it/web/blog/?p=191 </remarks>
  619. </member>
  620. <member name="M:System.Web.WebPages.UrlUtil.IsDisplayableType(System.Type)">
  621. <summary>
  622. Determines if a type is displayable as part of a Url path.
  623. </summary>
  624. <remarks>
  625. If a type is a displayable type, then we format values of that type as part of the Url Path. If not, then
  626. we attempt to create a RouteValueDictionary, and encode the value as key-value pairs in the query string.
  627. We determine if a type is displayable by whether or not it implements any interfaces. The built-in simple
  628. types like Int32 implement IFormattable, which will be used to convert it to a string.
  629. Primarily we do this check to allow anonymous types to represent key-value pairs (anonymous types don't
  630. implement any interfaces).
  631. </remarks>
  632. </member>
  633. <member name="P:System.Web.WebPages.RequestFieldValidatorBase.IgnoreUseUnvalidatedValues">
  634. <summary>
  635. Meant for unit tests that causes RequestFieldValidatorBase to basically ignore the unvalidated field requirement.
  636. </summary>
  637. </member>
  638. <member name="T:System.Web.WebPages.ITemplateFile">
  639. <summary>
  640. An interface that provides information about the current executing file.
  641. WebPageRenderingBase implements this type so that all pages excluding AppStart pages could be queried to identify the
  642. current executing file.
  643. </summary>
  644. </member>
  645. <member name="T:System.Web.WebPages.StartPage">
  646. <summary>
  647. Wrapper class to be used by _pagestart.cshtml files to call into
  648. the actual page.
  649. Most of the properties and methods just delegate the call to ChildPage.XXX
  650. </summary>
  651. </member>
  652. <member name="M:System.Web.WebPages.StartPage.GetStartPage(System.Web.WebPages.WebPageRenderingBase,System.String,System.Collections.Generic.IEnumerable{System.String})">
  653. <summary>
  654. Returns either the root-most init page, or the provided page itself if no init page is found
  655. </summary>
  656. </member>
  657. <member name="T:System.Web.WebPages.DynamicPageDataDictionary`1">
  658. <summary>
  659. This is a wrapper around PageDataDictionary[[dynamic]] which allows dynamic
  660. access (e.g. dict.Foo). Like PageDataDictionary, it returns null if the key is not found,
  661. instead of throwing an exception.
  662. This class is intended to be used as DynamicPageDataDictionary[[dynamic]]
  663. </summary>
  664. </member>
  665. <member name="M:System.Web.WebPages.Html.HtmlHelper.Raw(System.String)">
  666. <summary>
  667. Wraps HTML markup in an IHtmlString, which will enable HTML markup to be
  668. rendered to the output without getting HTML encoded.
  669. </summary>
  670. <param name="value">HTML markup string.</param>
  671. <returns>An IHtmlString that represents HTML markup.</returns>
  672. </member>
  673. <member name="M:System.Web.WebPages.Html.HtmlHelper.Raw(System.Object)">
  674. <summary>
  675. Wraps HTML markup from the string representation of an object in an IHtmlString,
  676. which will enable HTML markup to be rendered to the output without getting HTML encoded.
  677. </summary>
  678. <param name="value">object with string representation as HTML markup</param>
  679. <returns>An IHtmlString that represents HTML markup.</returns>
  680. </member>
  681. <member name="M:System.Web.WebPages.Html.HtmlHelper.AnonymousObjectToHtmlAttributes(System.Object)">
  682. <summary>
  683. Creates a dictionary of HTML attributes from the input object,
  684. translating underscores to dashes.
  685. <example>
  686. new { data_name="value" } will translate to the entry { "data-name" , "value" }
  687. in the resulting dictionary.
  688. </example>
  689. </summary>
  690. <param name="htmlAttributes">Anonymous object describing HTML attributes.</param>
  691. <returns>A dictionary that represents HTML attributes.</returns>
  692. </member>
  693. <member name="T:System.Web.WebPages.Scope.ApplicationScopeStorageDictionary">
  694. <summary>
  695. The application level storage context that uses a static dictionary as a backing store.
  696. </summary>
  697. </member>
  698. <member name="M:System.Web.WebPages.Scope.ScopeStorageDictionary.#ctor(System.Collections.Generic.IDictionary{System.Object,System.Object},System.Collections.Generic.IDictionary{System.Object,System.Object})">
  699. <summary>
  700. Initializes a new instance of the <see cref="T:System.Web.WebPages.Scope.ScopeStorageDictionary"/> class.
  701. </summary>
  702. <param name="baseScope">The base scope.</param>
  703. <param name="backingStore">
  704. The dictionary to use as a storage. Since the dictionary would be used as-is, we expect the implementer to
  705. use the same key-value comparison logic as we do here.
  706. </param>
  707. </member>
  708. <member name="T:System.Web.WebPages.Scope.ScopeStorageComparer">
  709. <summary>
  710. Custom comparer for the context dictionaries
  711. The comparer treats strings as a special case, performing case insesitive comparison.
  712. This guaratees that we remain consistent throughout the chain of contexts since PageData dictionary
  713. behaves in this manner.
  714. </summary>
  715. </member>
  716. <member name="T:System.Web.WebPages.TemplateFileInfo">
  717. <summary>
  718. TemplateFileInfo specifies properties of a template such as VirtualPath.
  719. This type allows us to modify the behavior of ITemplateFile between releases without changing the interface.
  720. </summary>
  721. </member>
  722. <member name="T:System.Web.WebPages.TemplateStack">
  723. <summary>
  724. Template stacks store a stack of template files. WebPageExecutingBase implements this type, so when executing Plan9 or Mvc WebViewPage,
  725. the stack would contain instances of the page.
  726. The stack can be queried to identify properties of the current executing file such as the virtual path of the file.
  727. </summary>
  728. </member>
  729. <member name="M:System.Web.WebPages.PathUtil.GetExtension(System.String)">
  730. <summary>
  731. Path.GetExtension performs a CheckInvalidPathChars(path) which blows up for paths that do not translate to valid physical paths but are valid paths in ASP.NET
  732. This method is a near clone of Path.GetExtension without a call to CheckInvalidPathChars(path);
  733. </summary>
  734. </member>
  735. <member name="M:System.Web.WebPages.PathUtil.IsSimpleName(System.String)">
  736. <summary>
  737. Determines true if the path is simply "MyPath", and not app-relative "~/MyPath" or absolute "/MyApp/MyPath" or relative "../Test/MyPath"
  738. </summary>
  739. <returns>True if it is a not app-relative, absolute or relative.</returns>
  740. </member>
  741. <member name="T:System.Web.WebPages.PageDataDictionary`1">
  742. <summary>
  743. This is a wrapper around Dictionary so that using PageData[key] returns null
  744. if the key is not found, instead of throwing an exception.
  745. </summary>
  746. </member>
  747. <member name="T:System.Web.WebPages.Resources.WebPageResources">
  748. <summary>
  749. A strongly-typed resource class, for looking up localized strings, etc.
  750. </summary>
  751. </member>
  752. <member name="P:System.Web.WebPages.Resources.WebPageResources.ResourceManager">
  753. <summary>
  754. Returns the cached ResourceManager instance used by this class.
  755. </summary>
  756. </member>
  757. <member name="P:System.Web.WebPages.Resources.WebPageResources.Culture">
  758. <summary>
  759. Overrides the current thread's CurrentUICulture property for all
  760. resource lookups using this strongly typed resource class.
  761. </summary>
  762. </member>
  763. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryToken_AdditionalDataCheckFailed">
  764. <summary>
  765. Looks up a localized string similar to The provided anti-forgery token failed a custom data check..
  766. </summary>
  767. </member>
  768. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryToken_ClaimUidMismatch">
  769. <summary>
  770. Looks up a localized string similar to The provided anti-forgery token was meant for a different claims-based user than the current user..
  771. </summary>
  772. </member>
  773. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryToken_CookieMissing">
  774. <summary>
  775. Looks up a localized string similar to The required anti-forgery cookie &quot;{0}&quot; is not present..
  776. </summary>
  777. </member>
  778. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryToken_DeserializationFailed">
  779. <summary>
  780. Looks up a localized string similar to The anti-forgery token could not be decrypted. If this application is hosted by a Web Farm or cluster, ensure that all machines are running the same version of ASP.NET Web Pages and that the &lt;machineKey&gt; configuration specifies explicit encryption and validation keys. AutoGenerate cannot be used in a cluster..
  781. </summary>
  782. </member>
  783. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryToken_FormFieldMissing">
  784. <summary>
  785. Looks up a localized string similar to The required anti-forgery form field &quot;{0}&quot; is not present..
  786. </summary>
  787. </member>
  788. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryToken_SecurityTokenMismatch">
  789. <summary>
  790. Looks up a localized string similar to The anti-forgery cookie token and form field token do not match..
  791. </summary>
  792. </member>
  793. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryToken_TokensSwapped">
  794. <summary>
  795. Looks up a localized string similar to Validation of the provided anti-forgery token failed. The cookie &quot;{0}&quot; and the form field &quot;{1}&quot; were swapped..
  796. </summary>
  797. </member>
  798. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryToken_UsernameMismatch">
  799. <summary>
  800. Looks up a localized string similar to The provided anti-forgery token was meant for user &quot;{0}&quot;, but the current user is &quot;{1}&quot;..
  801. </summary>
  802. </member>
  803. <member name="P:System.Web.WebPages.Resources.WebPageResources.AntiForgeryWorker_RequireSSL">
  804. <summary>
  805. Looks up a localized string similar to The anti-forgery system has the configuration value AntiForgeryConfig.RequireSsl = true, but the current request is not an SSL request..
  806. </summary>
  807. </member>
  808. <member name="P:System.Web.WebPages.Resources.WebPageResources.ApplicationPart_ModuleAlreadyRegistered">
  809. <summary>
  810. Looks up a localized string similar to The assembly &quot;{0}&quot; is already registered..
  811. </summary>
  812. </member>
  813. <member name="P:System.Web.WebPages.Resources.WebPageResources.ApplicationPart_ModuleAlreadyRegisteredForVirtualPath">
  814. <summary>
  815. Looks up a localized string similar to An application module is already registered for virtual path &quot;{0}&quot;..
  816. </summary>
  817. </member>
  818. <member name="P:System.Web.WebPages.Resources.WebPageResources.ApplicationPart_ModuleCannotBeFound">
  819. <summary>
  820. Looks up a localized string similar to Unable to find an application module with the name &quot;{0}&quot;..
  821. </summary>
  822. </member>
  823. <member name="P:System.Web.WebPages.Resources.WebPageResources.ApplicationPart_ModuleNotRegistered">
  824. <summary>
  825. Looks up a localized string similar to The assembly &quot;{0}&quot; is not a registered application module..
  826. </summary>
  827. </member>
  828. <member name="P:System.Web.WebPages.Resources.WebPageResources.ApplicationPart_ResourceNotFound">
  829. <summary>
  830. Looks up a localized string similar to The resource file &quot;{0}&quot; could not be found..
  831. </summary>
  832. </member>
  833. <member name="P:System.Web.WebPages.Resources.WebPageResources.ClaimUidExtractor_ClaimNotPresent">
  834. <summary>
  835. Looks up a localized string similar to A claim of type &apos;{0}&apos; was not present on the provided ClaimsIdentity..
  836. </summary>
  837. </member>
  838. <member name="P:System.Web.WebPages.Resources.WebPageResources.ClaimUidExtractor_DefaultClaimsNotPresent">
  839. <summary>
  840. Looks up a localized string similar to A claim of type &apos;http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier&apos; or &apos;http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider&apos; was not present on the provided ClaimsIdentity. To enable anti-forgery token support with claims-based authentication, please verify that the configured claims provider is providing both of these claims on the ClaimsIdentity instances it generates. If the configured claims provider instead uses a different claim type as a unique identif [rest of string was truncated]&quot;;.
  841. </summary>
  842. </member>
  843. <member name="P:System.Web.WebPages.Resources.WebPageResources.DynamicDictionary_InvalidNumberOfIndexes">
  844. <summary>
  845. Looks up a localized string similar to Index length must be exactly one..
  846. </summary>
  847. </member>
  848. <member name="P:System.Web.WebPages.Resources.WebPageResources.DynamicHttpApplicationState_UseOnlyStringOrIntToGet">
  849. <summary>
  850. Looks up a localized string similar to Index must be of type string or int when getting a value..
  851. </summary>
  852. </member>
  853. <member name="P:System.Web.WebPages.Resources.WebPageResources.DynamicHttpApplicationState_UseOnlyStringToSet">
  854. <summary>
  855. Looks up a localized string similar to Index must be of type string when setting a value..
  856. </summary>
  857. </member>
  858. <member name="P:System.Web.WebPages.Resources.WebPageResources.HtmlHelper_ConversionThrew">
  859. <summary>
  860. Looks up a localized string similar to The parameter conversion from type &quot;{0}&quot; to type &quot;{1}&quot; failed. See the inner exception for more information..
  861. </summary>
  862. </member>
  863. <member name="P:System.Web.WebPages.Resources.WebPageResources.HtmlHelper_NoConverterExists">
  864. <summary>
  865. Looks up a localized string similar to The parameter conversion from type &quot;{0}&quot; to type &quot;{1}&quot; failed because no type converter can convert between these types..
  866. </summary>
  867. </member>
  868. <member name="P:System.Web.WebPages.Resources.WebPageResources.HttpContextUnavailable">
  869. <summary>
  870. Looks up a localized string similar to An HttpContext is required to perform this operation. Check that this operation is being performed during a web request..
  871. </summary>
  872. </member>
  873. <member name="P:System.Web.WebPages.Resources.WebPageResources.SessionState_InvalidValue">
  874. <summary>
  875. Looks up a localized string similar to Value &quot;{0}&quot; specified in &quot;{1}&quot; is an invalid value for the SessionState directive. Possible values are: &quot;{2}&quot;..
  876. </summary>
  877. </member>
  878. <member name="P:System.Web.WebPages.Resources.WebPageResources.SessionState_TooManyValues">
  879. <summary>
  880. Looks up a localized string similar to At most one SessionState value can be declared per page..
  881. </summary>
  882. </member>
  883. <member name="P:System.Web.WebPages.Resources.WebPageResources.StateStorage_RequestScopeNotAvailable">
  884. <summary>
  885. Looks up a localized string similar to RequestScope cannot be created when _AppStart is executing..
  886. </summary>
  887. </member>
  888. <member name="P:System.Web.WebPages.Resources.WebPageResources.StateStorage_ScopeIsReadOnly">
  889. <summary>
  890. Looks up a localized string similar to Storage scope is read only..
  891. </summary>
  892. </member>
  893. <member name="P:System.Web.WebPages.Resources.WebPageResources.StateStorage_StorageScopesCannotBeCreated">
  894. <summary>
  895. Looks up a localized string similar to Storage scopes cannot be created when _AppStart is executing..
  896. </summary>
  897. </member>
  898. <member name="P:System.Web.WebPages.Resources.WebPageResources.TokenValidator_AuthenticatedUserWithoutUsername">
  899. <summary>
  900. Looks up a localized string similar to The provided identity of type &apos;{0}&apos; is marked IsAuthenticated = true but does not have a value for Name. By default, the anti-forgery system requires that all authenticated identities have a unique Name. If it is not possible to provide a unique Name for this identity, consider setting the static property AntiForgeryConfig.AdditionalDataProvider to an instance of a type that can provide some form of unique identifier for the current user..
  901. </summary>
  902. </member>
  903. <member name="P:System.Web.WebPages.Resources.WebPageResources.UnobtrusiveJavascript_ValidationParameterCannotBeEmpty">
  904. <summary>
  905. Looks up a localized string similar to Validation parameter names in unobtrusive client validation rules cannot be empty. Client rule type: {0}.
  906. </summary>
  907. </member>
  908. <member name="P:System.Web.WebPages.Resources.WebPageResources.UnobtrusiveJavascript_ValidationParameterMustBeLegal">
  909. <summary>
  910. Looks up a localized string similar to Validation parameter names in unobtrusive client validation rules must start with a lowercase letter and consist of only lowercase letters or digits. Validation parameter name: {0}, client rule type: {1}.
  911. </summary>
  912. </member>
  913. <member name="P:System.Web.WebPages.Resources.WebPageResources.UnobtrusiveJavascript_ValidationTypeCannotBeEmpty">
  914. <summary>
  915. Looks up a localized string similar to Validation type names in unobtrusive client validation rules cannot be empty. Client rule type: {0}.
  916. </summary>
  917. </member>
  918. <member name="P:System.Web.WebPages.Resources.WebPageResources.UnobtrusiveJavascript_ValidationTypeMustBeLegal">
  919. <summary>
  920. Looks up a localized string similar to Validation type names in unobtrusive client validation rules must consist of only lowercase letters. Invalid name: &quot;{0}&quot;, client rule type: {1}.
  921. </summary>
  922. </member>
  923. <member name="P:System.Web.WebPages.Resources.WebPageResources.UnobtrusiveJavascript_ValidationTypeMustBeUnique">
  924. <summary>
  925. Looks up a localized string similar to Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: {0}.
  926. </summary>
  927. </member>
  928. <member name="P:System.Web.WebPages.Resources.WebPageResources.UrlData_ReadOnly">
  929. <summary>
  930. Looks up a localized string similar to The UrlData collection is read-only..
  931. </summary>
  932. </member>
  933. <member name="P:System.Web.WebPages.Resources.WebPageResources.ValidationDefault_DataType">
  934. <summary>
  935. Looks up a localized string similar to Input format is invalid..
  936. </summary>
  937. </member>
  938. <member name="P:System.Web.WebPages.Resources.WebPageResources.ValidationDefault_EqualsTo">
  939. <summary>
  940. Looks up a localized string similar to Values do not match..
  941. </summary>
  942. </member>
  943. <member name="P:System.Web.WebPages.Resources.WebPageResources.ValidationDefault_FloatRange">
  944. <summary>
  945. Looks up a localized string similar to Value must be a decimal between {0} and {1}..
  946. </summary>
  947. </member>
  948. <member name="P:System.Web.WebPages.Resources.WebPageResources.ValidationDefault_IntegerRange">
  949. <summary>
  950. Looks up a localized string similar to Value must be an integer between {0} and {1}..
  951. </summary>
  952. </member>
  953. <member name="P:System.Web.WebPages.Resources.WebPageResources.ValidationDefault_Regex">
  954. <summary>
  955. Looks up a localized string similar to Value is invalid..
  956. </summary>
  957. </member>
  958. <member name="P:System.Web.WebPages.Resources.WebPageResources.ValidationDefault_Required">
  959. <summary>
  960. Looks up a localized string similar to This field is required..
  961. </summary>
  962. </member>
  963. <member name="P:System.Web.WebPages.Resources.WebPageResources.ValidationDefault_StringLength">
  964. <summary>
  965. Looks up a localized string similar to Max length: {0}..
  966. </summary>
  967. </member>
  968. <member name="P:System.Web.WebPages.Resources.WebPageResources.ValidationDefault_StringLengthRange">
  969. <summary>
  970. Looks up a localized string similar to String must be between {0} and {1} characters..
  971. </summary>
  972. </member>
  973. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_CannotRequestDirectly">
  974. <summary>
  975. Looks up a localized string similar to The file &quot;{0}&quot; cannot be requested directly because it calls the &quot;{1}&quot; method..
  976. </summary>
  977. </member>
  978. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_FileNotSupported">
  979. <summary>
  980. Looks up a localized string similar to The following file could not be rendered because its extension &quot;{0}&quot; might not be supported: &quot;{1}&quot;..
  981. </summary>
  982. </member>
  983. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_InvalidPageType">
  984. <summary>
  985. Looks up a localized string similar to The file &quot;{0}&quot; could not be rendered, because it does not exist or is not a valid page..
  986. </summary>
  987. </member>
  988. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_LayoutPageNotFound">
  989. <summary>
  990. Looks up a localized string similar to The layout page &quot;{0}&quot; could not be found at the following path: &quot;{1}&quot;..
  991. </summary>
  992. </member>
  993. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_RenderBodyAlreadyCalled">
  994. <summary>
  995. Looks up a localized string similar to The &quot;RenderBody&quot; method has already been called..
  996. </summary>
  997. </member>
  998. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_RenderBodyNotCalled">
  999. <summary>
  1000. Looks up a localized string similar to The &quot;RenderBody&quot; method has not been called for layout page &quot;{0}&quot;..
  1001. </summary>
  1002. </member>
  1003. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_SectionAleadyDefined">
  1004. <summary>
  1005. Looks up a localized string similar to Section already defined: &quot;{0}&quot;..
  1006. </summary>
  1007. </member>
  1008. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_SectionAleadyRendered">
  1009. <summary>
  1010. Looks up a localized string similar to The &quot;RenderSection&quot; method has already been called for the section named &quot;{0}&quot;..
  1011. </summary>
  1012. </member>
  1013. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_SectionNotDefined">
  1014. <summary>
  1015. Looks up a localized string similar to Section not defined: &quot;{0}&quot;..
  1016. </summary>
  1017. </member>
  1018. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPage_SectionsNotRendered">
  1019. <summary>
  1020. Looks up a localized string similar to The following sections have been defined but have not been rendered for the layout page &quot;{0}&quot;: &quot;{1}&quot;..
  1021. </summary>
  1022. </member>
  1023. <member name="P:System.Web.WebPages.Resources.WebPageResources.WebPageRoute_UnderscoreBlocked">
  1024. <summary>
  1025. Looks up a localized string similar to Files with leading underscores (&quot;_&quot;) cannot be served..
  1026. </summary>
  1027. </member>
  1028. <member name="M:System.Web.WebPages.WebPageBase.CreatePageFromVirtualPath(System.String,System.Web.HttpContextBase,System.Func{System.String,System.Boolean},System.Web.WebPages.DisplayModeProvider,System.Web.WebPages.IDisplayMode)">
  1029. <summary>
  1030. Attempts to create a WebPageBase instance from a virtualPath and wraps complex compiler exceptions with simpler messages
  1031. </summary>
  1032. </member>
  1033. </members>
  1034. </doc>