HttpCapabilitiesBase.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. //
  2. // System.Web.Configuration.HttpCapabilitiesBase
  3. //
  4. // Authors:
  5. // Chris Toshok ([email protected])
  6. //
  7. // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining
  10. // a copy of this software and associated documentation files (the
  11. // "Software"), to deal in the Software without restriction, including
  12. // without limitation the rights to use, copy, modify, merge, publish,
  13. // distribute, sublicense, and/or sell copies of the Software, and to
  14. // permit persons to whom the Software is furnished to do so, subject to
  15. // the following conditions:
  16. //
  17. // The above copyright notice and this permission notice shall be
  18. // included in all copies or substantial portions of the Software.
  19. //
  20. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  24. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  25. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. //
  28. #if NET_2_0
  29. using System.Collections;
  30. using System.Security.Permissions;
  31. using System.IO;
  32. using System.Web.UI;
  33. namespace System.Web.Configuration
  34. {
  35. public partial class HttpCapabilitiesBase: IFilterResolutionService
  36. {
  37. int IFilterResolutionService.CompareFilters (string filter1, string filter2)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. bool IFilterResolutionService.EvaluateFilter (string filterName)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. public void AddBrowser (string browserName)
  46. {
  47. }
  48. public HtmlTextWriter CreateHtmlTextWriter (TextWriter w)
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. public void DisableOptimizedCacheKey ()
  53. {
  54. }
  55. public Version[] GetClrVersions ()
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. public HttpCapabilitiesBase GetConfigCapabilities ()
  60. {
  61. throw new NotImplementedException ();
  62. }
  63. public IDictionary Adapters {
  64. get { throw new NotImplementedException (); }
  65. }
  66. public virtual bool CanCombineFormsInDeck {
  67. get { throw new NotImplementedException (); }
  68. }
  69. public virtual bool CanInitiateVoiceCall {
  70. get { throw new NotImplementedException (); }
  71. }
  72. public virtual bool CanRenderAfterInputOrSelectElement {
  73. get { throw new NotImplementedException (); }
  74. }
  75. public virtual bool CanRenderEmptySelects {
  76. get { throw new NotImplementedException (); }
  77. }
  78. public virtual bool CanRenderInputAndSelectElementsTogether {
  79. get { throw new NotImplementedException (); }
  80. }
  81. public virtual bool CanRenderMixedSelects {
  82. get { throw new NotImplementedException (); }
  83. }
  84. public virtual bool CanRenderOneventAndPrevElementsTogether {
  85. get { throw new NotImplementedException (); }
  86. }
  87. public virtual bool CanRenderPostBackCards {
  88. get { throw new NotImplementedException (); }
  89. }
  90. public virtual bool CanRenderSetvarZeroWithMultiSelectionList {
  91. get { throw new NotImplementedException (); }
  92. }
  93. public virtual bool CanSendMail {
  94. get { throw new NotImplementedException (); }
  95. }
  96. public IDictionary Capabilities {
  97. get { throw new NotImplementedException (); }
  98. set { }
  99. }
  100. public virtual int DefaultSubmitButtonLimit {
  101. get { throw new NotImplementedException (); }
  102. }
  103. public virtual int GatewayMajorVersion {
  104. get { throw new NotImplementedException (); }
  105. }
  106. public virtual Double GatewayMinorVersion {
  107. get { throw new NotImplementedException (); }
  108. }
  109. public virtual string GatewayVersion {
  110. get { throw new NotImplementedException (); }
  111. }
  112. public virtual bool HasBackButton {
  113. get { throw new NotImplementedException (); }
  114. }
  115. public virtual bool HidesRightAlignedMultiselectScrollbars {
  116. get { throw new NotImplementedException (); }
  117. }
  118. public string HtmlTextWriter {
  119. get { throw new NotImplementedException (); }
  120. set { }
  121. }
  122. public string Id {
  123. get { throw new NotImplementedException (); }
  124. }
  125. public virtual string InputType {
  126. get { throw new NotImplementedException (); }
  127. }
  128. public virtual bool IsColor {
  129. get { throw new NotImplementedException (); }
  130. }
  131. public virtual bool IsMobileDevice {
  132. get { throw new NotImplementedException (); }
  133. }
  134. public virtual string Item {
  135. get { throw new NotImplementedException (); }
  136. }
  137. public Version JScriptVersion {
  138. get { throw new NotImplementedException (); }
  139. }
  140. public virtual int MaximumHrefLength {
  141. get { throw new NotImplementedException (); }
  142. }
  143. public virtual int MaximumRenderedPageSize {
  144. get { throw new NotImplementedException (); }
  145. }
  146. public virtual int MaximumSoftkeyLabelLength {
  147. get { throw new NotImplementedException (); }
  148. }
  149. public string MinorVersionString {
  150. get { throw new NotImplementedException (); }
  151. }
  152. public virtual string MobileDeviceManufacturer {
  153. get { throw new NotImplementedException (); }
  154. }
  155. public virtual string MobileDeviceModel {
  156. get { throw new NotImplementedException (); }
  157. }
  158. public virtual int NumberOfSoftkeys {
  159. get { throw new NotImplementedException (); }
  160. }
  161. public virtual string PreferredImageMime {
  162. get { throw new NotImplementedException (); }
  163. }
  164. public virtual string PreferredRenderingMime {
  165. get { throw new NotImplementedException (); }
  166. }
  167. public virtual string PreferredRenderingType {
  168. get { throw new NotImplementedException (); }
  169. }
  170. public virtual string PreferredRequestEncoding {
  171. get { throw new NotImplementedException (); }
  172. }
  173. public virtual string PreferredResponseEncoding {
  174. get { throw new NotImplementedException (); }
  175. }
  176. public virtual bool RendersBreakBeforeWmlSelectAndInput {
  177. get { throw new NotImplementedException (); }
  178. }
  179. public virtual bool RendersBreaksAfterHtmlLists {
  180. get { throw new NotImplementedException (); }
  181. }
  182. public virtual bool RendersBreaksAfterWmlAnchor {
  183. get { throw new NotImplementedException (); }
  184. }
  185. public virtual bool RendersBreaksAfterWmlInput {
  186. get { throw new NotImplementedException (); }
  187. }
  188. public virtual bool RendersWmlDoAcceptsInline {
  189. get { throw new NotImplementedException (); }
  190. }
  191. public virtual bool RendersWmlSelectsAsMenuCards {
  192. get { throw new NotImplementedException (); }
  193. }
  194. public virtual string RequiredMetaTagNameValue {
  195. get { throw new NotImplementedException (); }
  196. }
  197. public virtual bool RequiresAttributeColonSubstitution {
  198. get { throw new NotImplementedException (); }
  199. }
  200. public virtual bool RequiresContentTypeMetaTag {
  201. get { throw new NotImplementedException (); }
  202. }
  203. public bool RequiresControlStateInSession {
  204. get { throw new NotImplementedException (); }
  205. }
  206. public virtual bool RequiresDBCSCharacter {
  207. get { throw new NotImplementedException (); }
  208. }
  209. public virtual bool RequiresHtmlAdaptiveErrorReporting {
  210. get { throw new NotImplementedException (); }
  211. }
  212. public virtual bool RequiresLeadingPageBreak {
  213. get { throw new NotImplementedException (); }
  214. }
  215. public virtual bool RequiresNoBreakInFormatting {
  216. get { throw new NotImplementedException (); }
  217. }
  218. public virtual bool RequiresOutputOptimization {
  219. get { throw new NotImplementedException (); }
  220. }
  221. public virtual bool RequiresPhoneNumbersAsPlainText {
  222. get { throw new NotImplementedException (); }
  223. }
  224. public virtual bool RequiresSpecialViewStateEncoding {
  225. get { throw new NotImplementedException (); }
  226. }
  227. public virtual bool RequiresUniqueFilePathSuffix {
  228. get { throw new NotImplementedException (); }
  229. }
  230. public virtual bool RequiresUniqueHtmlCheckboxNames {
  231. get { throw new NotImplementedException (); }
  232. }
  233. public virtual bool RequiresUniqueHtmlInputNames {
  234. get { throw new NotImplementedException (); }
  235. }
  236. public virtual bool RequiresUrlEncodedPostfieldValues {
  237. get { throw new NotImplementedException (); }
  238. }
  239. public virtual int ScreenBitDepth {
  240. get { throw new NotImplementedException (); }
  241. }
  242. public virtual int ScreenCharactersHeight {
  243. get { throw new NotImplementedException (); }
  244. }
  245. public virtual int ScreenCharactersWidth {
  246. get { throw new NotImplementedException (); }
  247. }
  248. public virtual int ScreenPixelsHeight {
  249. get { throw new NotImplementedException (); }
  250. }
  251. public virtual int ScreenPixelsWidth {
  252. get { throw new NotImplementedException (); }
  253. }
  254. public virtual bool SupportsAccesskeyAttribute {
  255. get { throw new NotImplementedException (); }
  256. }
  257. public virtual bool SupportsBodyColor {
  258. get { throw new NotImplementedException (); }
  259. }
  260. public virtual bool SupportsBold {
  261. get { throw new NotImplementedException (); }
  262. }
  263. public virtual bool SupportsCacheControlMetaTag {
  264. get { throw new NotImplementedException (); }
  265. }
  266. public virtual bool SupportsCallback {
  267. get { throw new NotImplementedException (); }
  268. }
  269. public virtual bool SupportsCss {
  270. get { throw new NotImplementedException (); }
  271. }
  272. public virtual bool SupportsDivAlign {
  273. get { throw new NotImplementedException (); }
  274. }
  275. public virtual bool SupportsDivNoWrap {
  276. get { throw new NotImplementedException (); }
  277. }
  278. public virtual bool SupportsEmptyStringInCookieValue {
  279. get { throw new NotImplementedException (); }
  280. }
  281. public virtual bool SupportsFontColor {
  282. get { throw new NotImplementedException (); }
  283. }
  284. public virtual bool SupportsFontName {
  285. get { throw new NotImplementedException (); }
  286. }
  287. public virtual bool SupportsFontSize {
  288. get { throw new NotImplementedException (); }
  289. }
  290. public virtual bool SupportsImageSubmit {
  291. get { throw new NotImplementedException (); }
  292. }
  293. public virtual bool SupportsIModeSymbols {
  294. get { throw new NotImplementedException (); }
  295. }
  296. public virtual bool SupportsInputIStyle {
  297. get { throw new NotImplementedException (); }
  298. }
  299. public virtual bool SupportsInputMode {
  300. get { throw new NotImplementedException (); }
  301. }
  302. public virtual bool SupportsItalic {
  303. get { throw new NotImplementedException (); }
  304. }
  305. public virtual bool SupportsJPhoneMultiMediaAttributes {
  306. get { throw new NotImplementedException (); }
  307. }
  308. public virtual bool SupportsJPhoneSymbols {
  309. get { throw new NotImplementedException (); }
  310. }
  311. public virtual bool SupportsQueryStringInFormAction {
  312. get { throw new NotImplementedException (); }
  313. }
  314. public virtual bool SupportsRedirectWithCookie {
  315. get { throw new NotImplementedException (); }
  316. }
  317. public virtual bool SupportsSelectMultiple {
  318. get { throw new NotImplementedException (); }
  319. }
  320. public virtual bool SupportsUncheck {
  321. get { throw new NotImplementedException (); }
  322. }
  323. public virtual bool SupportsXmlHttp {
  324. get { throw new NotImplementedException (); }
  325. }
  326. public bool UseOptimizedCacheKey {
  327. get { throw new NotImplementedException (); }
  328. }
  329. }
  330. }
  331. #endif