HttpCapabilitiesBase.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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 HttpCapabilitiesBase GetConfigCapabilities ()
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. public IDictionary Adapters {
  60. get { throw new NotImplementedException (); }
  61. }
  62. public virtual bool CanCombineFormsInDeck {
  63. get { throw new NotImplementedException (); }
  64. }
  65. public virtual bool CanInitiateVoiceCall {
  66. get { throw new NotImplementedException (); }
  67. }
  68. public virtual bool CanRenderAfterInputOrSelectElement {
  69. get { throw new NotImplementedException (); }
  70. }
  71. public virtual bool CanRenderEmptySelects {
  72. get { throw new NotImplementedException (); }
  73. }
  74. public virtual bool CanRenderInputAndSelectElementsTogether {
  75. get { throw new NotImplementedException (); }
  76. }
  77. public virtual bool CanRenderMixedSelects {
  78. get { throw new NotImplementedException (); }
  79. }
  80. public virtual bool CanRenderOneventAndPrevElementsTogether {
  81. get { throw new NotImplementedException (); }
  82. }
  83. public virtual bool CanRenderPostBackCards {
  84. get { throw new NotImplementedException (); }
  85. }
  86. public virtual bool CanRenderSetvarZeroWithMultiSelectionList {
  87. get { throw new NotImplementedException (); }
  88. }
  89. public virtual bool CanSendMail {
  90. get { throw new NotImplementedException (); }
  91. }
  92. public IDictionary Capabilities {
  93. get { throw new NotImplementedException (); }
  94. set { }
  95. }
  96. public virtual int DefaultSubmitButtonLimit {
  97. get { throw new NotImplementedException (); }
  98. }
  99. public virtual int GatewayMajorVersion {
  100. get { throw new NotImplementedException (); }
  101. }
  102. public virtual Double GatewayMinorVersion {
  103. get { throw new NotImplementedException (); }
  104. }
  105. public virtual string GatewayVersion {
  106. get { throw new NotImplementedException (); }
  107. }
  108. public virtual bool HasBackButton {
  109. get { throw new NotImplementedException (); }
  110. }
  111. public virtual bool HidesRightAlignedMultiselectScrollbars {
  112. get { throw new NotImplementedException (); }
  113. }
  114. public string HtmlTextWriter {
  115. get { throw new NotImplementedException (); }
  116. set { }
  117. }
  118. public string Id {
  119. get { throw new NotImplementedException (); }
  120. }
  121. public virtual string InputType {
  122. get { throw new NotImplementedException (); }
  123. }
  124. public virtual bool IsColor {
  125. get { throw new NotImplementedException (); }
  126. }
  127. public virtual bool IsMobileDevice {
  128. get { throw new NotImplementedException (); }
  129. }
  130. public virtual string Item {
  131. get { throw new NotImplementedException (); }
  132. }
  133. public Version JScriptVersion {
  134. get { throw new NotImplementedException (); }
  135. }
  136. public virtual int MaximumHrefLength {
  137. get { throw new NotImplementedException (); }
  138. }
  139. public virtual int MaximumRenderedPageSize {
  140. get { throw new NotImplementedException (); }
  141. }
  142. public virtual int MaximumSoftkeyLabelLength {
  143. get { throw new NotImplementedException (); }
  144. }
  145. public string MinorVersionString {
  146. get { throw new NotImplementedException (); }
  147. }
  148. public virtual string MobileDeviceManufacturer {
  149. get { throw new NotImplementedException (); }
  150. }
  151. public virtual string MobileDeviceModel {
  152. get { throw new NotImplementedException (); }
  153. }
  154. public virtual int NumberOfSoftkeys {
  155. get { throw new NotImplementedException (); }
  156. }
  157. public virtual string PreferredImageMime {
  158. get { throw new NotImplementedException (); }
  159. }
  160. public virtual string PreferredRenderingMime {
  161. get { throw new NotImplementedException (); }
  162. }
  163. public virtual string PreferredRenderingType {
  164. get { throw new NotImplementedException (); }
  165. }
  166. public virtual string PreferredRequestEncoding {
  167. get { throw new NotImplementedException (); }
  168. }
  169. public virtual string PreferredResponseEncoding {
  170. get { throw new NotImplementedException (); }
  171. }
  172. public virtual bool RendersBreakBeforeWmlSelectAndInput {
  173. get { throw new NotImplementedException (); }
  174. }
  175. public virtual bool RendersBreaksAfterHtmlLists {
  176. get { throw new NotImplementedException (); }
  177. }
  178. public virtual bool RendersBreaksAfterWmlAnchor {
  179. get { throw new NotImplementedException (); }
  180. }
  181. public virtual bool RendersBreaksAfterWmlInput {
  182. get { throw new NotImplementedException (); }
  183. }
  184. public virtual bool RendersWmlDoAcceptsInline {
  185. get { throw new NotImplementedException (); }
  186. }
  187. public virtual bool RendersWmlSelectsAsMenuCards {
  188. get { throw new NotImplementedException (); }
  189. }
  190. public virtual string RequiredMetaTagNameValue {
  191. get { throw new NotImplementedException (); }
  192. }
  193. public virtual bool RequiresAttributeColonSubstitution {
  194. get { throw new NotImplementedException (); }
  195. }
  196. public virtual bool RequiresContentTypeMetaTag {
  197. get { throw new NotImplementedException (); }
  198. }
  199. public bool RequiresControlStateInSession {
  200. get { throw new NotImplementedException (); }
  201. }
  202. public virtual bool RequiresDBCSCharacter {
  203. get { throw new NotImplementedException (); }
  204. }
  205. public virtual bool RequiresHtmlAdaptiveErrorReporting {
  206. get { throw new NotImplementedException (); }
  207. }
  208. public virtual bool RequiresLeadingPageBreak {
  209. get { throw new NotImplementedException (); }
  210. }
  211. public virtual bool RequiresNoBreakInFormatting {
  212. get { throw new NotImplementedException (); }
  213. }
  214. public virtual bool RequiresOutputOptimization {
  215. get { throw new NotImplementedException (); }
  216. }
  217. public virtual bool RequiresPhoneNumbersAsPlainText {
  218. get { throw new NotImplementedException (); }
  219. }
  220. public virtual bool RequiresSpecialViewStateEncoding {
  221. get { throw new NotImplementedException (); }
  222. }
  223. public virtual bool RequiresUniqueFilePathSuffix {
  224. get { throw new NotImplementedException (); }
  225. }
  226. public virtual bool RequiresUniqueHtmlCheckboxNames {
  227. get { throw new NotImplementedException (); }
  228. }
  229. public virtual bool RequiresUniqueHtmlInputNames {
  230. get { throw new NotImplementedException (); }
  231. }
  232. public virtual bool RequiresUrlEncodedPostfieldValues {
  233. get { throw new NotImplementedException (); }
  234. }
  235. public virtual int ScreenBitDepth {
  236. get { throw new NotImplementedException (); }
  237. }
  238. public virtual int ScreenCharactersHeight {
  239. get { throw new NotImplementedException (); }
  240. }
  241. public virtual int ScreenCharactersWidth {
  242. get { throw new NotImplementedException (); }
  243. }
  244. public virtual int ScreenPixelsHeight {
  245. get { throw new NotImplementedException (); }
  246. }
  247. public virtual int ScreenPixelsWidth {
  248. get { throw new NotImplementedException (); }
  249. }
  250. public virtual bool SupportsAccesskeyAttribute {
  251. get { throw new NotImplementedException (); }
  252. }
  253. public virtual bool SupportsBodyColor {
  254. get { throw new NotImplementedException (); }
  255. }
  256. public virtual bool SupportsBold {
  257. get { throw new NotImplementedException (); }
  258. }
  259. public virtual bool SupportsCacheControlMetaTag {
  260. get { throw new NotImplementedException (); }
  261. }
  262. public virtual bool SupportsCallback {
  263. get { throw new NotImplementedException (); }
  264. }
  265. public virtual bool SupportsCss {
  266. get { throw new NotImplementedException (); }
  267. }
  268. public virtual bool SupportsDivAlign {
  269. get { throw new NotImplementedException (); }
  270. }
  271. public virtual bool SupportsDivNoWrap {
  272. get { throw new NotImplementedException (); }
  273. }
  274. public virtual bool SupportsEmptyStringInCookieValue {
  275. get { throw new NotImplementedException (); }
  276. }
  277. public virtual bool SupportsFontColor {
  278. get { throw new NotImplementedException (); }
  279. }
  280. public virtual bool SupportsFontName {
  281. get { throw new NotImplementedException (); }
  282. }
  283. public virtual bool SupportsFontSize {
  284. get { throw new NotImplementedException (); }
  285. }
  286. public virtual bool SupportsImageSubmit {
  287. get { throw new NotImplementedException (); }
  288. }
  289. public virtual bool SupportsIModeSymbols {
  290. get { throw new NotImplementedException (); }
  291. }
  292. public virtual bool SupportsInputIStyle {
  293. get { throw new NotImplementedException (); }
  294. }
  295. public virtual bool SupportsInputMode {
  296. get { throw new NotImplementedException (); }
  297. }
  298. public virtual bool SupportsItalic {
  299. get { throw new NotImplementedException (); }
  300. }
  301. public virtual bool SupportsJPhoneMultiMediaAttributes {
  302. get { throw new NotImplementedException (); }
  303. }
  304. public virtual bool SupportsJPhoneSymbols {
  305. get { throw new NotImplementedException (); }
  306. }
  307. public virtual bool SupportsQueryStringInFormAction {
  308. get { throw new NotImplementedException (); }
  309. }
  310. public virtual bool SupportsRedirectWithCookie {
  311. get { throw new NotImplementedException (); }
  312. }
  313. public virtual bool SupportsSelectMultiple {
  314. get { throw new NotImplementedException (); }
  315. }
  316. public virtual bool SupportsUncheck {
  317. get { throw new NotImplementedException (); }
  318. }
  319. public virtual bool SupportsXmlHttp {
  320. get { throw new NotImplementedException (); }
  321. }
  322. public bool UseOptimizedCacheKey {
  323. get { throw new NotImplementedException (); }
  324. }
  325. }
  326. }
  327. #endif