MSharp.Framework.xml 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>MSharp.Framework</name>
  5. </assembly>
  6. <members>
  7. <member name="T:MSharp.Framework.Data.Ado.Net.OleDbDataProvider">
  8. <summary>
  9. Provides a DataProvider for accessing data from the database using ADO.NET based on the OleDb provider.
  10. </summary>
  11. </member>
  12. <member name="T:MSharp.Framework.Data.Ado.Net.OdbcDataProvider">
  13. <summary>
  14. Provides a DataProvider for accessing data from the database using ADO.NET based on the ODBC provider.
  15. </summary>
  16. </member>
  17. <member name="M:MSharp.Framework.DefaultApplicationEventManager.GetCurrentUserIP">
  18. <summary>
  19. Gets the IP address of the current user.
  20. </summary>
  21. </member>
  22. <member name="T:MSharp.Framework.Services.IImpersonator">
  23. <summary>
  24. Defines an admin user who can impersonate other users.
  25. </summary>
  26. </member>
  27. <member name="P:MSharp.Framework.Services.IImpersonator.ImpersonationToken">
  28. <summary>
  29. A unique single-use-only cookie-based token to specify the currently impersonated user session.
  30. </summary>
  31. </member>
  32. <member name="M:MSharp.Framework.Services.IImpersonator.CanImpersonate(MSharp.Framework.Services.IUser)">
  33. <summary>
  34. Determines if this user can impersonate the specified other user.
  35. </summary>
  36. </member>
  37. <member name="T:MSharp.Framework.Services.ImpersonationSession">
  38. <summary>
  39. Provides the business logic for ImpersonationContext class.
  40. </summary>
  41. </member>
  42. <member name="F:MSharp.Framework.Services.ImpersonationSession.CurrentUserProvider">
  43. <summary>
  44. Provides the current user.
  45. </summary>
  46. </member>
  47. <member name="M:MSharp.Framework.Services.ImpersonationSession.IsImpersonated">
  48. <summary>
  49. Determines if the current user is impersonated.
  50. </summary>
  51. </member>
  52. <member name="M:MSharp.Framework.Services.ImpersonationSession.Impersonate(MSharp.Framework.Services.IUser,System.Boolean,System.String)">
  53. <summary>
  54. Impersonates the specified user by the current admin user.
  55. </summary>
  56. <param name="originalUrl">If not specified, the current HTTP request's URL will be used.</param>
  57. </member>
  58. <member name="M:MSharp.Framework.Services.ImpersonationSession.End">
  59. <summary>
  60. Ends the current impersonation session.
  61. </summary>
  62. </member>
  63. <member name="P:MSharp.Framework.Services.ImpersonationSession.Impersonator">
  64. <summary>
  65. Gets the original user who impersonated the current user.
  66. </summary>
  67. </member>
  68. <member name="M:MSharp.Framework.Services.IpFilter.SetGlobalPolicy(MSharp.Framework.Services.IpFilter.Policy)">
  69. <summary>
  70. Sets the default policy for all IP addresses.
  71. </summary>
  72. </member>
  73. <member name="M:MSharp.Framework.Services.IpFilter.SetSpecificIpPolicy(MSharp.Framework.Services.IpFilter.Policy,System.String[])">
  74. <summary>
  75. Sets the policy for specific IP addresses. These will override the global, region and country policies.
  76. </summary>
  77. </member>
  78. <member name="M:MSharp.Framework.Services.IpFilter.SetCountryPolicy(MSharp.Framework.Services.IpFilter.Policy,System.String[])">
  79. <summary>
  80. Sets the IP Filter policy. All Disallow policies should be set first, then all Allow policies.
  81. </summary>
  82. </member>
  83. <member name="M:MSharp.Framework.Services.IpFilter.SetRegionPolicy(MSharp.Framework.Services.IpFilter.Policy,System.String[])">
  84. <summary>
  85. Sets the IP Filter policy. All Disallow policies should be set first, then all Allow policies.
  86. </summary>
  87. </member>
  88. <member name="M:MSharp.Framework.Services.IpFilter.BlockIfNecessary">
  89. <summary>
  90. If the IP address of the current user is in a blocked list, then it will terminate the request with a response saying:
  91. This website is not available in your region.
  92. </summary>
  93. </member>
  94. <member name="M:MSharp.Framework.Services.Compiler.#ctor">
  95. <summary>
  96. Creates a new Compiler instance.
  97. </summary>
  98. </member>
  99. <member name="M:MSharp.Framework.Services.DynamicExpressionsCompiler`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  100. <summary>
  101. Creates a new DynamicExpressionsCompiler instance.
  102. </summary>
  103. </member>
  104. <member name="M:MSharp.Framework.Services.DynamicExpressionsCompiler`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Type)">
  105. <summary>
  106. Creates a new DynamicExpressionsCompiler instance.
  107. </summary>
  108. </member>
  109. <member name="M:MSharp.Framework.Services.Rss.RssChannel.#ctor">
  110. <summary>
  111. Creates a new RssChannel instance.
  112. </summary>
  113. </member>
  114. <member name="M:MSharp.Framework.Services.Rss.RssServer.GenerateXml(MSharp.Framework.Services.Rss.RssChannel)">
  115. <summary>
  116. Generates Rss Xml document for the specified items.
  117. </summary>
  118. </member>
  119. <member name="M:MSharp.Framework.Services.Rss.RssServer.Dispatch(MSharp.Framework.Services.Rss.RssChannel)">
  120. <summary>
  121. Dispatches an Xml document in the current http response.
  122. </summary>
  123. </member>
  124. <member name="M:MSharp.Framework.Services.Testing.Snapshot.GetList(System.Boolean)">
  125. <summary>
  126. Gets the list of current snapshots on disk.
  127. </summary>
  128. </member>
  129. <member name="M:MSharp.Framework.Services.UrlRewriting.Escape(System.String)">
  130. <summary>
  131. Creates a suitable string for urls.
  132. </summary>
  133. </member>
  134. <member name="M:MSharp.Framework.Services.UrlRewriting.FindRequestedResource">
  135. <summary>
  136. Gets the Currently requested resource.
  137. </summary>
  138. </member>
  139. <member name="M:MSharp.Framework.Services.UrlRewriting.FindRequestedResource(System.Boolean)">
  140. <summary>
  141. Gets the Currently requested resource.
  142. </summary>
  143. </member>
  144. <member name="M:MSharp.Framework.Services.UrlRewriting.Matches(MSharp.Framework.Services.IWebResource,System.String)">
  145. <summary>
  146. Determines if this web resource's Url matches a given path.
  147. </summary>
  148. </member>
  149. <member name="T:MSharp.Framework.Services.CookieProperty">
  150. <summary>
  151. Provides easy access to HTTP cookie data.
  152. </summary>
  153. </member>
  154. <member name="M:MSharp.Framework.Services.CookieProperty.Get``1">
  155. <summary>
  156. Gets the value of the property sent from the client browser as a cookie.
  157. </summary>
  158. </member>
  159. <member name="M:MSharp.Framework.Services.CookieProperty.Get(System.String)">
  160. <summary>
  161. Gets the value of a string property sent from the client browser as a cookie.
  162. </summary>
  163. </member>
  164. <member name="M:MSharp.Framework.Services.CookieProperty.Get``1(``0)">
  165. <summary>
  166. Gets the value of the property sent from the client browser as a cookie.
  167. </summary>
  168. </member>
  169. <member name="M:MSharp.Framework.Services.CookieProperty.Get``1(System.String)">
  170. <summary>
  171. Gets the value of the property sent from the client browser as a cookie.
  172. </summary>
  173. </member>
  174. <member name="M:MSharp.Framework.Services.CookieProperty.Get``1(System.String,``0)">
  175. <summary>
  176. Gets the value of the property sent from the client browser as a cookie.
  177. </summary>
  178. </member>
  179. <member name="M:MSharp.Framework.Services.CookieProperty.Set``1(``0,System.Boolean)">
  180. <summary>
  181. Sets a specified value in the response cookie as well as request cookie.
  182. </summary>
  183. <param name="isHttpOnly">Specifies whether the cookie should be accessible via Javascript too, or Server (http) only.</param>
  184. </member>
  185. <member name="M:MSharp.Framework.Services.CookieProperty.Set``1(System.String,``0,System.Boolean)">
  186. <summary>
  187. Sets a specified value in the response cookie as well as request cookie.
  188. </summary>
  189. <param name="isHttpOnly">Specifies whether the cookie should be accessible via Javascript too, or Server (http) only.</param>
  190. </member>
  191. <member name="M:MSharp.Framework.Services.CookieProperty.SetList``1(System.String,System.Collections.Generic.IEnumerable{``0},System.Boolean)">
  192. <summary>
  193. Sets a specified list in the response cookie as well as request cookie.
  194. </summary>
  195. <param name="isHttpOnly">Specifies whether the cookie should be accessible via Javascript too, or Server (http) only.</param>
  196. </member>
  197. <member name="M:MSharp.Framework.Services.CookieProperty.GetList``1">
  198. <summary>
  199. Sets a specified list in the response cookie as well as request cookie.
  200. </summary>
  201. </member>
  202. <member name="M:MSharp.Framework.Services.CookieProperty.GetList``1(System.String)">
  203. <summary>
  204. Gets a specified list in the response cookie as well as request cookie.
  205. </summary>
  206. </member>
  207. <member name="M:MSharp.Framework.Services.CookieProperty.Remove``1">
  208. <summary>
  209. Removes the specified cookie property.
  210. </summary>
  211. </member>
  212. <member name="M:MSharp.Framework.Services.CookieProperty.Remove``1(System.String)">
  213. <summary>
  214. Removes the specified cookie property.
  215. </summary>
  216. </member>
  217. <member name="M:MSharp.Framework.Services.CookieProperty.Remove(System.String)">
  218. <summary>
  219. Removes the specified cookie property.
  220. </summary>
  221. </member>
  222. <member name="M:MSharp.Framework.Services.CookieProperty.Set(System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
  223. <summary>
  224. Sets a specified value in the response cookie as well as request cookie.
  225. </summary>
  226. <param name="isHttpOnly">Specifies whether the cookie should be accessible via Javascript too, or Server (http) only.</param>
  227. </member>
  228. <member name="M:MSharp.Framework.Services.CookieProperty.Set(System.String,System.String,System.Boolean)">
  229. <summary>
  230. Sets a specified value in the response cookie as well as request cookie.
  231. </summary>
  232. <param name="isHttpOnly">Specifies whether the cookie should be accessible via Javascript too, or Server (http) only.</param>
  233. </member>
  234. <member name="T:MSharp.Framework.Services.WebCapture">
  235. <summary>
  236. This class provides utilities to capture an image from a web url
  237. </summary>
  238. </member>
  239. <member name="M:MSharp.Framework.Services.WebCapture.#ctor">
  240. <summary>
  241. Creates a new WebCapture instance.
  242. </summary>
  243. </member>
  244. <member name="P:MSharp.Framework.Services.WebCapture.OutputFormat">
  245. <summary>
  246. Output format default: PNG
  247. </summary>
  248. </member>
  249. <member name="P:MSharp.Framework.Services.WebCapture.MinWidth">
  250. <summary>
  251. Gets or sets the MinWidth of this WebCapture.
  252. </summary>
  253. </member>
  254. <member name="P:MSharp.Framework.Services.WebCapture.MinHeight">
  255. <summary>
  256. Gets or sets the MinHeight of this WebCapture.
  257. </summary>
  258. </member>
  259. <member name="P:MSharp.Framework.Services.WebCapture.Delay">
  260. <summary>
  261. After successful load, wait X milliseconds (default: 0)
  262. </summary>
  263. </member>
  264. <member name="P:MSharp.Framework.Services.WebCapture.Javascript">
  265. <summary>
  266. JavaScript execution (default: on)
  267. </summary>
  268. </member>
  269. <member name="P:MSharp.Framework.Services.WebCapture.MaxWait">
  270. <summary>
  271. Maximum time in millisecond that the process should take to capture the snapshot.
  272. if ths time is passed the system would throw exception. DEFAULT: 20,000
  273. </summary>
  274. </member>
  275. <member name="M:MSharp.Framework.Services.WebCapture.GetArguments(System.String,System.String)">
  276. <summary>
  277. Prepares arguments for capturing executable
  278. </summary>
  279. </member>
  280. <member name="M:MSharp.Framework.Services.WebCapture.Capture(System.String)">
  281. <summary>
  282. Gets the byte array of an image captured from the given url
  283. </summary>
  284. </member>
  285. <member name="M:MSharp.Framework.Services.WebCapture.CaptureBitmap(System.String)">
  286. <summary>
  287. Gets the bitmap captured from the given url
  288. To get the data you can call .ToBuffer(ImageFormat.Png).
  289. </summary>
  290. </member>
  291. <member name="M:MSharp.Framework.Services.WebCapture.Capture(System.String,System.String)">
  292. <summary>
  293. Capturs from the given url and stores it in the gievn file path
  294. </summary>
  295. </member>
  296. <member name="T:MSharp.Framework.Services.WebRequestLogService">
  297. <summary>
  298. Provides services to web request log objects.
  299. </summary>
  300. </member>
  301. <member name="F:MSharp.Framework.Services.WebRequestLogService.WebRequestLogFactory">
  302. <summary>
  303. Specifies a factory to instantiate WebRequestLog objects.
  304. </summary>
  305. </member>
  306. <member name="M:MSharp.Framework.Services.WebRequestLogService.Record(MSharp.Framework.Services.IWebRequestLog,System.Web.HttpContext)">
  307. <summary>
  308. Records this web request log in the provided http context.
  309. </summary>
  310. </member>
  311. <member name="M:MSharp.Framework.Services.WebRequestLogService.CountRequestsInSession(MSharp.Framework.Services.IWebRequestLog)">
  312. <summary>
  313. Gets the number of requests made in the same session.
  314. </summary>
  315. </member>
  316. <member name="M:MSharp.Framework.Services.WebRequestLogService.GetLastVisitedUrl(MSharp.Framework.Services.IWebRequestLog)">
  317. <summary>
  318. Gest the last url visited in this session.
  319. </summary>
  320. </member>
  321. <member name="M:MSharp.Framework.Services.WebRequestLogService.GetData(MSharp.Framework.Services.IWebRequestLog,System.String)">
  322. <summary>
  323. Gets the value of a query string key.
  324. </summary>
  325. </member>
  326. <member name="M:MSharp.Framework.Services.WebRequestLogService.FindRecentSessions(System.TimeSpan)">
  327. <summary>
  328. Gets the first request of every session that has had an activity during the last 10 minutes.
  329. </summary>
  330. </member>
  331. <member name="M:MSharp.Framework.UI.Controls.AutoComplete.#ctor">
  332. <summary>
  333. Creates a new AutoComplete instance.
  334. </summary>
  335. </member>
  336. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.SelectedValueBox">
  337. <summary>
  338. Gets or sets the SelectedValueBox of this AutoComplete.
  339. </summary>
  340. </member>
  341. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.AutoPostBack">
  342. <summary>
  343. Gets or sets the AutoPostBack of this AutoComplete.
  344. </summary>
  345. </member>
  346. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.OnSelectedValueChange">
  347. <summary>
  348. Gets or sets the OnSelectedValueChanged of this AutoComplete.
  349. </summary>
  350. </member>
  351. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.OnCollapse">
  352. <summary>
  353. Gets or sets the OnCollapse of this AutoComplete.
  354. </summary>
  355. </member>
  356. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.RequestDelay">
  357. <summary>
  358. Gets or sets the RequestDelay of this AutoComplete DEFAULT IS 300.
  359. </summary>
  360. </member>
  361. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.ExpandOnFocus">
  362. <summary>
  363. Gets or sets the ExpandOnFocus of this AutoComplete.
  364. </summary>
  365. </member>
  366. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.OptimizedMode">
  367. <summary>
  368. Gets or sets the OptimizedMode of this AutoComplete.
  369. </summary>
  370. </member>
  371. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.SourceProvider">
  372. <summary>
  373. Gets or sets the SourceProvider of this AutoComplete.
  374. </summary>
  375. </member>
  376. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.ClientSide">
  377. <summary>
  378. Gets or sets the ClientSide of this AutoComplete.
  379. </summary>
  380. </member>
  381. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.Items">
  382. <summary>
  383. Gets or sets the Items of this control.
  384. </summary>
  385. </member>
  386. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.WatermarkText">
  387. <summary>
  388. Gets or sets the WatermarkText of this AutoComplete.
  389. </summary>
  390. </member>
  391. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.NotFoundText">
  392. <summary>
  393. Gets or sets the NotFoundText of this AutoComplete.
  394. </summary>
  395. </member>
  396. <member name="M:MSharp.Framework.UI.Controls.AutoComplete.SetSelectedItem(System.String,System.String)">
  397. <summary>
  398. Sets the selected item.
  399. </summary>
  400. </member>
  401. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.Text">
  402. <summary>
  403. Gets or sets the Text of this AutoComplete.
  404. </summary>
  405. </member>
  406. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.LoadingText">
  407. <summary>
  408. Gets or sets the LoadingText of this AutoComplete.
  409. </summary>
  410. </member>
  411. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.InnerTextBox">
  412. <summary>
  413. Gets or sets the InnerTextBox of this AutoComplete.
  414. </summary>
  415. </member>
  416. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.ItemsPanel">
  417. <summary>
  418. Gets or sets the ItemsPanel of this AutoComplete.
  419. </summary>
  420. </member>
  421. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.SelectedValue">
  422. <summary>
  423. Gets or sets the SelectedValue of this AutoComplete.
  424. </summary>
  425. </member>
  426. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.TextBoxOnly">
  427. <summary>
  428. Disables auto complete behaviour and acts like a normal text box
  429. </summary>
  430. </member>
  431. <member name="M:MSharp.Framework.UI.Controls.AutoComplete.OnPreRender(System.EventArgs)">
  432. <summary>
  433. Raises the <see cref="E:System.Web.UI.Control.PreRender"/> event.
  434. </summary>
  435. <param name="e">An <see cref="T:System.EventArgs"/> object that contains the event data.</param>
  436. </member>
  437. <member name="M:MSharp.Framework.UI.Controls.AutoComplete.Focus(System.Boolean)">
  438. <summary>
  439. Sets input focus to a control.
  440. </summary>
  441. </member>
  442. <member name="M:MSharp.Framework.UI.Controls.AutoComplete.Focus">
  443. <summary>
  444. Sets input focus to a control.
  445. </summary>
  446. </member>
  447. <member name="P:MSharp.Framework.UI.Controls.AutoComplete.PageCount">
  448. <summary>
  449. Gets or sets the PageCount of this AutoComplete.
  450. </summary>
  451. </member>
  452. <member name="M:MSharp.Framework.UI.Controls.AutoComplete.GetCallbackResult(System.Collections.Generic.IEnumerable{System.Web.UI.WebControls.ListItem},System.String)">
  453. <summary>
  454. Gets the callback result of the given items in autocomplete-feidnly json format.
  455. </summary>
  456. <param name="items">items to be serialized</param>
  457. <param name="filter">filter that is used to produce these items</param>
  458. </member>
  459. <member name="P:MSharp.Framework.UI.Controls.CollapsibleCheckBoxList.HideDelay">
  460. <summary>
  461. Gets or sets the HideDelay of this MultiSelectList.
  462. </summary>
  463. </member>
  464. <member name="P:MSharp.Framework.UI.Controls.CollapsibleCheckBoxList.PluralName">
  465. <summary>
  466. Gets or sets the PluralName of this MultiSelectList.
  467. </summary>
  468. </member>
  469. <member name="P:MSharp.Framework.UI.Controls.CollapsibleCheckBoxList.InitialSearchText">
  470. <summary>
  471. Gets or sets the InitialSearchText of this MultiSelectList.
  472. </summary>
  473. </member>
  474. <member name="P:MSharp.Framework.UI.Controls.CollapsibleCheckBoxList.NotSetText">
  475. <summary>
  476. Gets or sets the NotSetText of this MultiSelectList.
  477. </summary>
  478. </member>
  479. <member name="M:MSharp.Framework.UI.Controls.CollapsibleCheckBoxList.#ctor">
  480. <summary>
  481. Creates a new MultiSelectList instance.
  482. </summary>
  483. </member>
  484. <member name="T:MSharp.Framework.UI.Controls.HoverButton">
  485. <summary>
  486. A control that displays an image, hover image and responds to mouse clicks on the image.
  487. </summary>
  488. </member>
  489. <member name="M:MSharp.Framework.UI.Controls.NumericUpDown.#ctor">
  490. <summary>
  491. Creates a new NumericUpDown instance.
  492. </summary>
  493. </member>
  494. <member name="P:MSharp.Framework.UI.Controls.NumericUpDown.PlusLink">
  495. <summary>
  496. Gets or sets the PlusLink of this NumericUpDown.
  497. </summary>
  498. </member>
  499. <member name="P:MSharp.Framework.UI.Controls.NumericUpDown.MinusLink">
  500. <summary>
  501. Gets or sets the MinusLink of this NumericUpDown.
  502. </summary>
  503. </member>
  504. <member name="P:MSharp.Framework.UI.Controls.NumericUpDown.PlusImageUrl">
  505. <summary>
  506. Gets or sets the PlusImageUrl of this NumericUpDown.
  507. </summary>
  508. </member>
  509. <member name="P:MSharp.Framework.UI.Controls.NumericUpDown.MinusImageUrl">
  510. <summary>
  511. Gets or sets the MinusImageUrl of this NumericUpDown.
  512. </summary>
  513. </member>
  514. <member name="P:MSharp.Framework.UI.Controls.NumericUpDown.Minimum">
  515. <summary>
  516. Gets or sets the Minimum of this NumericUpDown.
  517. </summary>
  518. </member>
  519. <member name="P:MSharp.Framework.UI.Controls.NumericUpDown.Maximum">
  520. <summary>
  521. Gets or sets the Maximum of this NumericUpDown.
  522. </summary>
  523. </member>
  524. <member name="P:MSharp.Framework.UI.Controls.NumericUpDown.StepSize">
  525. <summary>
  526. Gets or sets the StepSize of this NumericUpDown.
  527. </summary>
  528. </member>
  529. <member name="M:MSharp.Framework.UI.BaseHttpApplication.OnFirstRequest">
  530. <summary>
  531. Called once, when the first ever request is being executed.
  532. It's called after processing Web.Test.Commands.
  533. </summary>
  534. </member>
  535. <member name="M:MSharp.Framework.UI.BaseHttpApplication.ShouldNotify(System.Exception)">
  536. <summary>
  537. Determines whether a notification for the specified error be emailed.
  538. </summary>
  539. </member>
  540. <member name="M:MSharp.Framework.UI.BaseHttpApplication.RetrieveActualUser(System.Security.Principal.IPrincipal)">
  541. <summary>
  542. Retrieves the actual user implementation based on the basic ASP.NET principle info.
  543. </summary>
  544. </member>
  545. <member name="F:MSharp.Framework.UI.HttpApplication.LoadUser">
  546. <summary>
  547. Loads the IUser object from the specified ASP.NET user principal.
  548. </summary>
  549. </member>
  550. <member name="F:MSharp.Framework.UI.ListContainer`1.Filters">
  551. <summary>
  552. Gets the filters added for search.
  553. </summary>
  554. </member>
  555. <member name="F:MSharp.Framework.UI.ListContainer`1.Item">
  556. <summary>
  557. Represents the current datasource item in the list.
  558. </summary>
  559. </member>
  560. <member name="M:MSharp.Framework.UI.ListContainer`1.GetSelectedItem">
  561. <summary>
  562. Gets the item on which the current command is executing.
  563. </summary>
  564. </member>
  565. <member name="M:MSharp.Framework.UI.ListContainer`1.OnPreRender(System.EventArgs)">
  566. <summary>
  567. Raises the <see cref="E:PreRender"/> event.
  568. </summary>
  569. <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
  570. </member>
  571. <member name="M:MSharp.Framework.UI.ListContainer`1.GetSelectedColumnsCookieName">
  572. <summary>
  573. Gets the name of the Selected Columns cookie.
  574. </summary>
  575. </member>
  576. <member name="M:MSharp.Framework.UI.ListContainer`1.GetSortExpressionKey">
  577. <summary>
  578. Gets the name of the sort expression cookie key.
  579. </summary>
  580. </member>
  581. <member name="M:MSharp.Framework.UI.ListContainer`1.AddFilter(System.Linq.Expressions.Expression{System.Func{`0,System.Boolean}})">
  582. <summary>
  583. Adds a filter to the search conditions.
  584. </summary>
  585. </member>
  586. <member name="M:MSharp.Framework.UI.ListContainer`1.ClearFilters">
  587. <summary>
  588. Clears all filters from this list.
  589. </summary>
  590. </member>
  591. <member name="P:MSharp.Framework.UI.ListContainer`1.SortExpression">
  592. <summary>
  593. Gets or sets the current sort expression of this module.
  594. </summary>
  595. </member>
  596. <member name="M:MSharp.Framework.UI.ListContainer`1.ResetSortExpression(System.String)">
  597. <summary>
  598. Resets the sort expression to the specified value.
  599. </summary>
  600. </member>
  601. <member name="M:MSharp.Framework.UI.ListContainer`1.GetFilterCriteria">
  602. <summary>
  603. Gets the filter criteria of this list.
  604. </summary>
  605. </member>
  606. <member name="M:MSharp.Framework.UI.ListContainer`1.GetQueryOptions">
  607. <summary>
  608. Gets the query options to use with the database query.
  609. </summary>
  610. </member>
  611. <member name="M:MSharp.Framework.UI.ListContainer`1.GetGroups">
  612. <summary>
  613. Gets the groups of the currently selected grouping expression.
  614. </summary>
  615. </member>
  616. <member name="M:MSharp.Framework.UI.ListContainer`1.GetGroup(System.Object)">
  617. <summary>
  618. Gets the items that fall into a specified group.
  619. </summary>
  620. </member>
  621. <member name="M:MSharp.Framework.UI.ListContainer`1.AddSearchFilters">
  622. <summary>
  623. Adds search filter expressions to this list's data source.
  624. </summary>
  625. </member>
  626. <member name="T:MSharp.Framework.UI.MasterPage">
  627. <summary>
  628. Base Page containing base common functionality, all pages inherit from this.
  629. </summary>
  630. </member>
  631. <member name="M:MSharp.Framework.UI.MasterPage.GetLogInUrl">
  632. <summary>
  633. Gets the basic raw url of the login page applicable to this master page.
  634. </summary>
  635. </member>
  636. <member name="M:MSharp.Framework.UI.MessageBoxManager.#ctor(System.Web.UI.Page)">
  637. <summary>
  638. Creates a new MessageBoxManager instance.
  639. </summary>
  640. </member>
  641. <member name="M:MSharp.Framework.UI.MessageBoxManager.Page_PreRenderComplete(System.Object,System.EventArgs)">
  642. <summary>
  643. Applies the Render scripts for this message box on the specified page.
  644. </summary>
  645. </member>
  646. <member name="M:MSharp.Framework.UI.MessageBoxManager.Show(System.Object)">
  647. <summary>
  648. Shows the specified message object's ToString() to the user.
  649. </summary>
  650. </member>
  651. <member name="M:MSharp.Framework.UI.MessageBoxManager.Show(System.String)">
  652. <summary>
  653. Shows the specified message to the user.
  654. </summary>
  655. </member>
  656. <member name="M:MSharp.Framework.UI.MessageBoxManager.ShowGently(System.Object)">
  657. <summary>
  658. Gently shows the specified message object's ToString() to the user.
  659. </summary>
  660. </member>
  661. <member name="M:MSharp.Framework.UI.MessageBoxManager.ShowGently(System.String)">
  662. <summary>
  663. Gently shows the specified message to the user.
  664. </summary>
  665. </member>
  666. <member name="T:MSharp.Framework.UI.Page">
  667. <summary>
  668. Base Page containing base common functionality, all pages inherit from this.
  669. </summary>
  670. </member>
  671. <member name="M:MSharp.Framework.UI.Page.Focus(System.Web.UI.Control)">
  672. <summary>
  673. Sets startup focus on a specified control.
  674. </summary>
  675. </member>
  676. <member name="M:MSharp.Framework.UI.Page.RedirectToLoginPage">
  677. <summary>
  678. Redirects the user to the Login Page.
  679. </summary>
  680. </member>
  681. <member name="M:MSharp.Framework.UI.Page.GetVirtualPath(System.String)">
  682. <summary>
  683. Gets the virtual path of a resource file.
  684. </summary>
  685. <param name="resourceLocation">The path of the resource from the root of the website. For example "Content/style.css"</param>
  686. </member>
  687. <member name="P:MSharp.Framework.UI.Page.RequiredScheme">
  688. <summary>
  689. Determines the required scheme (http / https) for this page.
  690. </summary>
  691. </member>
  692. <member name="M:MSharp.Framework.UI.Page.Render(System.Web.UI.HtmlTextWriter)">
  693. <summary>
  694. Initializes the <see cref="T:System.Web.UI.HtmlTextWriter"/> object and calls on the child controls of the <see cref="T:System.Web.UI.Page"/> to render.
  695. </summary>
  696. <param name="writer">The <see cref="T:System.Web.UI.HtmlTextWriter"/> that receives the page content.</param>
  697. </member>
  698. <member name="E:MSharp.Framework.UI.Page.PostBackEventRaising">
  699. <summary>
  700. Occurs just before PostBackEvent is raised.
  701. </summary>
  702. </member>
  703. <member name="M:MSharp.Framework.UI.Page.RaisePostBackEvent(System.Web.UI.IPostBackEventHandler,System.String)">
  704. <summary>
  705. Raises the post back event.
  706. </summary>
  707. </member>
  708. <member name="M:MSharp.Framework.UI.Page.Refresh">
  709. <summary>
  710. This will redirect the user to the current Request.Url.
  711. </summary>
  712. </member>
  713. <member name="M:MSharp.Framework.UI.Page.Translate(System.String)">
  714. <summary>
  715. Will return the translation of the specified phrase in the language specified in user's cookie (or default language).
  716. </summary>
  717. </member>
  718. <member name="M:MSharp.Framework.UI.Page.TranslateHtml(System.String)">
  719. <summary>
  720. Will return the translation of the specified html block in the language specified in user's cookie (or default language).
  721. </summary>
  722. </member>
  723. <member name="M:MSharp.Framework.UI.Page.PageUrl(System.String)">
  724. <summary>
  725. Gets the URL to a page specified by its resource key (from Site Map).
  726. </summary>
  727. </member>
  728. <member name="M:MSharp.Framework.UI.Page.GetPageUrl(System.String)">
  729. <summary>
  730. Gets the URL to a page specified by its resource key (from Site Map).
  731. </summary>
  732. </member>
  733. <member name="M:MSharp.Framework.UI.Page.IsFromUpdatePanel">
  734. <summary>
  735. Determines whether the current request is From inside an update panel.
  736. </summary>
  737. </member>
  738. <member name="M:MSharp.Framework.UI.Page.CloseModal">
  739. <summary>
  740. Closes the current modal window.
  741. </summary>
  742. </member>
  743. <member name="M:MSharp.Framework.UI.Page.CloseModal(System.AfterClose)">
  744. <summary>
  745. Closes the current modal window.
  746. </summary>
  747. </member>
  748. <member name="M:MSharp.Framework.UI.Page.CloseModal(System.String)">
  749. <summary>
  750. Closes the current modal window.
  751. </summary>
  752. </member>
  753. <member name="M:MSharp.Framework.UI.Page.CloseModal(System.AfterClose,System.String)">
  754. <summary>
  755. Closes the current modal window.
  756. </summary>
  757. </member>
  758. <member name="M:MSharp.Framework.UI.Page.GetReturnUrl">
  759. <summary>
  760. Gets the currently specified return URL.
  761. </summary>
  762. </member>
  763. <member name="M:MSharp.Framework.UI.Page.InitOutputCache(System.Web.UI.OutputCacheParameters)">
  764. <summary>
  765. http://support.microsoft.com/kb/316431
  766. This method is trying to solve the problem of downloading files in IE through secure access protocol (https)
  767. </summary>
  768. <param name="cacheSettings"></param>
  769. </member>
  770. <member name="M:MSharp.Framework.UI.Page.ShouldGZip">
  771. <summary>
  772. Determines whether GZip should be enabled on this page's response.
  773. </summary>
  774. </member>
  775. <member name="M:MSharp.Framework.UI.Page.RegisterScriptFile(System.String,MSharp.Framework.UI.ScriptInsertLocation)">
  776. <summary>
  777. Registers an external script url on this page.
  778. </summary>
  779. <param name="location">Specifies whether the script should be added to the page header. If False, it will be added to the </param>
  780. </member>
  781. <member name="T:MSharp.Framework.UI.UserControl">
  782. <summary>
  783. Represents an .ascx file, also known as a user control, requested from a
  784. server that hosts an ASP.NET Web application. The file must be called from
  785. a Web Forms page or a parser error will occur.
  786. </summary>
  787. </member>
  788. <member name="M:MSharp.Framework.UI.UserControl.#ctor">
  789. <summary>
  790. Creates a new UserControl instance.
  791. </summary>
  792. </member>
  793. <member name="P:MSharp.Framework.UI.UserControl.Page">
  794. <summary>
  795. Gets a reference to the <see cref="T:System.Web.UI.Page"/> instance that contains the server control.
  796. </summary>
  797. </member>
  798. <member name="M:MSharp.Framework.UI.UserControl.Translate(System.String)">
  799. <summary>
  800. Will return the translation of the specified phrase in the language specified in user's cookie (or default language).
  801. </summary>
  802. </member>
  803. <member name="M:MSharp.Framework.UI.UserControl.TranslateHtml(System.String)">
  804. <summary>
  805. Will return the translation of the specified html block in the language specified in user's cookie (or default language).
  806. </summary>
  807. </member>
  808. <member name="P:MSharp.Framework.UI.UserControl.IsCallBack">
  809. <summary>
  810. Gets a value indicating whether the page request is the result of a call back.
  811. Returns true if the page request is the result of a call back; otherwise, false.
  812. </summary>
  813. </member>
  814. <member name="M:MSharp.Framework.UI.UserControl.ProcessAjaxCall(System.String[])">
  815. <summary>
  816. This should return an anonymous object. Each property of that object will be exposed to the client-side function
  817. via a JSon object.
  818. </summary>
  819. <param name="arguments">The parameters sent by the client call.</param>
  820. </member>
  821. <member name="M:MSharp.Framework.UI.UserControl.PageUrl(System.String)">
  822. <summary>
  823. Gets the URL to a page specified by its resource key (from Site Map).
  824. </summary>
  825. </member>
  826. <member name="M:MSharp.Framework.UI.UserControl.CloseModal">
  827. <summary>
  828. Closes the current modal window.
  829. </summary>
  830. </member>
  831. <member name="M:MSharp.Framework.UI.UserControl.CloseModal(System.AfterClose,System.String)">
  832. <summary>
  833. Closes the current modal window.
  834. </summary>
  835. </member>
  836. <member name="M:MSharp.Framework.UI.UserControl.CloseModal(System.AfterClose)">
  837. <summary>
  838. Closes the current modal window.
  839. </summary>
  840. </member>
  841. <member name="M:MSharp.Framework.UI.UserControl.CloseModal(System.String)">
  842. <summary>
  843. Closes the current modal window.
  844. </summary>
  845. </member>
  846. <member name="M:MSharp.Framework.UI.UserControl.GetReturnUrl">
  847. <summary>
  848. Gets the currently specified return URL.
  849. </summary>
  850. </member>
  851. <member name="M:MSharp.Framework.UI.LazyModule.#ctor">
  852. <summary>
  853. Creates a new LazyModule instance.
  854. </summary>
  855. </member>
  856. <member name="M:MSharp.Framework.UI.AjaxScriptManagerCombinedScriptProvider.ProcessRequest(System.Web.HttpContext)">
  857. <summary>
  858. Enables processing of HTTP Web requests by a custom HttpHandler that implements the <see cref="T:System.Web.IHttpHandler"/> interface.
  859. </summary>
  860. <param name="context">An <see cref="T:System.Web.HttpContext"/> object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.</param>
  861. </member>
  862. <member name="P:MSharp.Framework.UI.AjaxScriptManagerCombinedScriptProvider.IsReusable">
  863. <summary>
  864. Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"/> instance.
  865. </summary>
  866. <returns>true if the <see cref="T:System.Web.IHttpHandler"/> instance is reusable; otherwise, false.</returns>
  867. </member>
  868. <member name="M:MSharp.Framework.UI.JavascriptVariable.#ctor(System.Web.UI.Control)">
  869. <summary>
  870. Creates a new JavascriptVariable instance.
  871. </summary>
  872. </member>
  873. <member name="M:MSharp.Framework.UI.SortExpressionProperty.#ctor(System.Web.UI.StateBag,System.Web.UI.WebControls.GridView,System.String,System.Boolean)">
  874. <summary>
  875. Creates a new SortExpressionProperty instance.
  876. </summary>
  877. </member>
  878. <member name="M:MSharp.Framework.UI.SortExpressionProperty.SetDirect(System.String)">
  879. <summary>
  880. Sets the specified value directly without processing it.
  881. </summary>
  882. </member>
  883. <member name="M:MSharp.Framework.UI.SortExpressionProperty.Set(System.String)">
  884. <summary>
  885. Sets the specified sort expression. It processes DESC before setting it to create the toggle effect.
  886. </summary>
  887. </member>
  888. <member name="M:MSharp.Framework.UI.WebTestManager.IsSanityExecutionMode">
  889. <summary>
  890. Determines if the application is currently being ran by Sanity.
  891. </summary>
  892. </member>
  893. <member name="M:MSharp.Framework.UI.WebTestManager.IsTddExecutionMode">
  894. <summary>
  895. Determines whether the application is running under Temp database mode.
  896. </summary>
  897. </member>
  898. <member name="M:MSharp.Framework.UI.WebTestManager.DispatchTasksList">
  899. <summary>
  900. To invoke this, send a request to /?web.test.command=tasks
  901. </summary>
  902. </member>
  903. <member name="M:MSharp.Framework.SecureFileDispatcher.#ctor(System.String,MSharp.Framework.Services.IUser)">
  904. <summary>
  905. Creates a new SecureFileDispatcher instance.
  906. </summary>
  907. </member>
  908. <member name="F:MSharp.Framework.SecureFileDispatcher.UnauthorisedRequestEventArgs.Property">
  909. <summary>
  910. A property of type Document which represents the requested file property.
  911. </summary>
  912. </member>
  913. <member name="F:MSharp.Framework.SecureFileDispatcher.UnauthorisedRequestEventArgs.Instance">
  914. <summary>
  915. The object on which the document property was requested.
  916. </summary>
  917. </member>
  918. <member name="F:MSharp.Framework.SecureFileDispatcher.UnauthorisedRequestEventArgs.Exception">
  919. <summary>
  920. The security error raised by M# framework.
  921. </summary>
  922. </member>
  923. <member name="M:MSharp.Framework.AWS.WebRequestHandler.RegisterDocumentOwnerTypesContainer(System.Reflection.Assembly)">
  924. <summary>
  925. Call this in Global.asax for the entities model assembly.
  926. </summary>
  927. </member>
  928. <member name="T:System.MSharpExtensionsWeb">
  929. <summary>
  930. Provides extensions methods to Standard .NET types.
  931. </summary>
  932. </member>
  933. <member name="M:System.MSharpExtensionsWeb.RegisterScriptFile(System.Web.UI.UserControl,System.String,MSharp.Framework.UI.ScriptInsertLocation)">
  934. <summary>
  935. Registers an external script url on this page.
  936. </summary>
  937. <param name="location">Specifies whether the script should be added to the page header. If False, it will be added to the </param>
  938. </member>
  939. <member name="M:System.MSharpExtensionsWeb.Restart(System.Web.HttpApplication)">
  940. <summary>
  941. It will restart the application.
  942. </summary>
  943. </member>
  944. <member name="M:System.MSharpExtensionsWeb.ToDocument(System.Web.HttpPostedFile)">
  945. <summary>
  946. Initializes a new Document instance, for the specified posted file.
  947. </summary>
  948. </member>
  949. <member name="M:System.MSharpExtensionsWeb.SendAsNotification(System.Exception)">
  950. <summary>
  951. Sends this error as a notification email to the address in web.config as Error.Notification.Receiver.
  952. </summary>
  953. </member>
  954. <member name="M:System.MSharpExtensionsWeb.SendAsNotification(System.Exception,System.String)">
  955. <summary>
  956. Sends this error as a notification email to the address in web.config as Error.Notification.Receiver.
  957. </summary>
  958. </member>
  959. <member name="M:System.MSharpExtensionsWeb.Configure(System.Net.Mail.SmtpClient)">
  960. <summary>
  961. Configures this smtp client with the specified config file path.
  962. </summary>
  963. </member>
  964. <member name="M:System.MSharpExtensionsWeb.SetAllSelected``1(System.Web.UI.WebControls.ListControl,System.Collections.Generic.IEnumerable{``0})">
  965. <summary>
  966. Sets the selected items of this list control to the specified array of objects.
  967. </summary>
  968. </member>
  969. <member name="M:System.MSharpExtensionsWeb.SetSelectedItem``1(System.Web.UI.WebControls.ListControl,``0)">
  970. <summary>
  971. Sets the selected item of this list control.
  972. </summary>
  973. </member>
  974. <member name="M:System.MSharpExtensionsWeb.SetSelectedItem(MSharp.Framework.UI.Controls.AutoComplete,MSharp.Framework.IEntity)">
  975. <summary>
  976. Sets the selected item.
  977. </summary>
  978. </member>
  979. <member name="M:System.MSharpExtensionsWeb.Get``1(System.Web.HttpRequest)">
  980. <summary>
  981. Returns an object whose ID is given in query string with the key of "id".
  982. </summary>
  983. </member>
  984. <member name="M:System.MSharpExtensionsWeb.GetCookies(System.Web.HttpRequest)">
  985. <summary>
  986. Gets the cookies sent by the client.
  987. </summary>
  988. </member>
  989. <member name="M:System.MSharpExtensionsWeb.Get``1(System.Web.HttpRequest,System.String)">
  990. <summary>
  991. Gets the data with the specified type from QueryString[key].
  992. If the specified type is an entity, then the ID of that record will be read from query string and then fetched from database.
  993. </summary>
  994. </member>
  995. <member name="M:System.MSharpExtensionsWeb.GetValue(System.Web.HttpRequest,System.String)">
  996. <summary>
  997. Returns a string value specified in the request context.
  998. </summary>
  999. </member>
  1000. <member name="M:System.MSharpExtensionsWeb.GetValue``1(System.Web.HttpRequest,System.String)">
  1001. <summary>
  1002. Returns a value specified in the request context.
  1003. </summary>
  1004. </member>
  1005. <member name="M:System.MSharpExtensionsWeb.GetEntity``1(System.Web.HttpRequest,System.String,System.Boolean)">
  1006. <summary>
  1007. Gets the record with the specified type. The ID of the record will be read from QueryString[key].
  1008. </summary>
  1009. </member>
  1010. <member name="M:System.MSharpExtensionsWeb.GetOrDefault``1(System.Web.HttpRequest)">
  1011. <summary>
  1012. Gets the record with the specified type. The ID of the record will be read from QueryString["id"].
  1013. </summary>
  1014. </member>
  1015. <member name="M:System.MSharpExtensionsWeb.GetOrDefault``1(System.Web.HttpRequest,System.String)">
  1016. <summary>
  1017. Gets the record with the specified type. The ID of the record will be read from QueryString[key].
  1018. </summary>
  1019. </member>
  1020. <member name="M:System.MSharpExtensionsWeb.GetList``1(System.Web.HttpRequest,System.String,System.Char)">
  1021. <summary>
  1022. Gets a list of objects of which Ids come in query string.
  1023. </summary>
  1024. <param name="key">The key of the query string element containing ids.</param>
  1025. <param name="seperator">The sepeerator of Ids in the query string value. The default will be comma (",").</param>
  1026. </member>
  1027. <member name="M:System.MSharpExtensionsWeb.GetSelected``1(System.Web.UI.WebControls.ListControl)">
  1028. <summary>
  1029. Gets the selected object on this list control.
  1030. </summary>
  1031. </member>
  1032. <member name="M:System.MSharpExtensionsWeb.GetItems(System.Web.UI.WebControls.ListControl)">
  1033. <summary>
  1034. Gets the items of this list control.
  1035. </summary>
  1036. </member>
  1037. <member name="M:System.MSharpExtensionsWeb.GetItems(System.Web.UI.WebControls.DataList)">
  1038. <summary>
  1039. Gets the items of this data list.
  1040. </summary>
  1041. </member>
  1042. <member name="M:System.MSharpExtensionsWeb.GetRows(System.Web.UI.WebControls.GridView)">
  1043. <summary>
  1044. Gets the rows of this data list.
  1045. </summary>
  1046. </member>
  1047. <member name="M:System.MSharpExtensionsWeb.IsMobile(System.Web.HttpRequest)">
  1048. <summary>
  1049. TODO: Refactor and clean this method.
  1050. </summary>
  1051. </member>
  1052. <member name="M:System.MSharpExtensionsWeb.IsTaggedDeleted(System.Web.UI.WebControls.GridViewRow)">
  1053. <summary>
  1054. Determines whether this grid view row is tagged deleted.
  1055. </summary>
  1056. </member>
  1057. <member name="M:System.MSharpExtensionsWeb.FindSearchKeyword(System.Web.HttpRequest)">
  1058. <summary>
  1059. Finds the search keywords used by this user on Google that led to the current request.
  1060. </summary>
  1061. </member>
  1062. <member name="M:System.MSharpExtensionsWeb.GetIPAddress(System.Web.HttpRequest)">
  1063. <summary>
  1064. Gets the actual IP address of the user considering the Proxy and other HTTP elements.
  1065. </summary>
  1066. </member>
  1067. <member name="M:System.MSharpExtensionsWeb.IsPrivateIp(System.String)">
  1068. <summary>
  1069. Determines if the given ip address is in any of the private IP ranges
  1070. </summary>
  1071. </member>
  1072. <member name="M:System.MSharpExtensionsWeb.IsLocalNetwork(System.Web.HttpRequest)">
  1073. <summary>
  1074. Determines whether this request is initiated from the local network, i.e. its IP starts with "192.168.".
  1075. </summary>
  1076. </member>
  1077. <member name="M:System.MSharpExtensionsWeb.WriteLine(System.Web.HttpResponse,System.String)">
  1078. <summary>
  1079. Writes the specified content wrapped in a DIV tag.
  1080. </summary>
  1081. </member>
  1082. <member name="M:System.MSharpExtensionsWeb.RedirectPermanent(System.Web.HttpResponse,System.String)">
  1083. <summary>
  1084. Redirects the client to the specified URL with a 301 status (permanent).
  1085. </summary>
  1086. </member>
  1087. <member name="M:System.MSharpExtensionsWeb.RedirectPermanent(System.Web.HttpResponse,System.String,System.Boolean)">
  1088. <summary>
  1089. Redirects the client to the specified URL with a 301 status (permanent).
  1090. </summary>
  1091. </member>
  1092. <member name="M:System.MSharpExtensionsWeb.FlattenWithChildren(System.Web.UI.WebControls.MenuItem)">
  1093. <summary>
  1094. Returns a flat list of this item plus all items in its hierarchy.
  1095. </summary>
  1096. </member>
  1097. <member name="M:System.MSharpExtensionsWeb.AddList``1(System.Web.SessionState.HttpSessionState,System.Collections.Generic.IEnumerable{``0})">
  1098. <summary>
  1099. Adds the specified list to session state and returns a unique Key for that.
  1100. </summary>
  1101. </member>
  1102. <member name="M:System.MSharpExtensionsWeb.AddList``1(System.Web.SessionState.HttpSessionState,System.Collections.Generic.IEnumerable{``0},System.TimeSpan)">
  1103. <summary>
  1104. Adds the specified list to session state and returns a unique Key for that.
  1105. </summary>
  1106. </member>
  1107. <member name="M:System.MSharpExtensionsWeb.GetList``1(System.Web.SessionState.HttpSessionState,System.String)">
  1108. <summary>
  1109. Retrieves a list of objects specified by the session key which is previously generated by Session.AddList() method.
  1110. </summary>
  1111. </member>
  1112. <member name="M:System.MSharpExtensionsWeb.ConvertPagerToLink(System.Web.UI.WebControls.GridView,System.String)">
  1113. <summary>
  1114. Converts the pager to query string-based links instead of the default post-back-driven model.
  1115. </summary>
  1116. </member>
  1117. <member name="M:System.MSharpExtensionsWeb.SelectInHttpContext``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
  1118. <summary>
  1119. Runs the parallel select in the current HTTP context.
  1120. </summary>
  1121. </member>
  1122. <member name="M:System.MSharpExtensionsWeb.InheritedRoles(System.Web.SiteMapNode)">
  1123. <summary>
  1124. Iterator recursively returning each role in the current nodes and all of it's ancestor roles.
  1125. </summary>
  1126. </member>
  1127. <member name="M:System.MSharpExtensionsWeb.IsAccessibleToUser(System.Web.SiteMapNode,MSharp.Framework.Services.IUser)">
  1128. <summary>
  1129. Overloads the SiteMapNode->IsAccessibleToUser method to test if the given User can access a particular page.
  1130. </summary>
  1131. </member>
  1132. <member name="M:System.MSharpExtensionsWeb.Has(System.Web.HttpRequest,System.String)">
  1133. <summary>
  1134. Determines if the specified argument exists in the request (query string or form).
  1135. </summary>
  1136. </member>
  1137. <member name="M:System.MSharpExtensionsWeb.Lacks(System.Web.HttpRequest,System.String)">
  1138. <summary>
  1139. Determines if a request parameter (route or query string) value does not exists for the specified key, or is empty.
  1140. </summary>
  1141. </member>
  1142. <member name="M:System.MSharpExtensionsWeb.IsHttps(System.Web.HttpRequest)">
  1143. <summary>
  1144. Determines whether the scheme of the current request is HTTPS.
  1145. </summary>
  1146. </member>
  1147. <member name="M:System.MSharpExtensionsWeb.GetAbsoluteUrl(System.Web.HttpRequest,System.String)">
  1148. <summary>
  1149. Gets the absolute URL for a specified relative url.
  1150. </summary>
  1151. </member>
  1152. <member name="M:System.MSharpExtensionsWeb.GetPostBackControl(System.Web.UI.Page)">
  1153. <summary>
  1154. Returns the control on the page that caused the page to post back.
  1155. </summary>
  1156. </member>
  1157. <member name="M:System.MSharpExtensionsWeb.Restart(System.Web.HttpApplicationState)">
  1158. <summary>
  1159. Restarts the currently running web application.
  1160. </summary>
  1161. </member>
  1162. <member name="M:System.MSharpExtensionsWeb.GetRow(System.Web.UI.WebControls.GridViewCommandEventArgs)">
  1163. <summary>
  1164. Gets the GridViewRow of this command.
  1165. </summary>
  1166. </member>
  1167. <member name="M:System.MSharpExtensionsWeb.AddRange``1(System.Web.UI.WebControls.ListItemCollection,System.Collections.Generic.IEnumerable{``0},MSharp.Framework.Services.Globalization.ILanguage)">
  1168. <summary>
  1169. Adds the range of specified entities translated in the specified language.
  1170. </summary>
  1171. </member>
  1172. <member name="M:System.MSharpExtensionsWeb.RenderHtml(System.Web.UI.Control)">
  1173. <summary>
  1174. Renders this control into a HTML string.
  1175. </summary>
  1176. </member>
  1177. <member name="M:System.MSharpExtensionsWeb.HideAll(System.Web.UI.ControlCollection)">
  1178. <summary>
  1179. Hides all controls in a collection
  1180. </summary>
  1181. <param name="controls"></param>
  1182. </member>
  1183. <member name="M:System.MSharpExtensionsWeb.GetParentControls(System.Web.UI.Control)">
  1184. <summary>
  1185. Gets all parent controls of this control to the root.
  1186. </summary>
  1187. </member>
  1188. <member name="M:System.MSharpExtensionsWeb.IsAncestorOf(System.Web.UI.Control,System.Web.UI.Control)">
  1189. <summary>
  1190. Determines is this control is the parent or ancestor of another control.
  1191. </summary>
  1192. </member>
  1193. <member name="M:System.MSharpExtensionsWeb.AddAfter(System.Web.UI.ControlCollection,System.Web.UI.Control,System.Web.UI.Control)">
  1194. <summary>
  1195. Adds a specified control after another existing control in this collection.
  1196. </summary>
  1197. </member>
  1198. <member name="M:System.MSharpExtensionsWeb.AddAfter(System.Web.UI.ControlCollection,System.Web.UI.Control,System.String)">
  1199. <summary>
  1200. Adds a specified html content after another existing control in this collection.
  1201. </summary>
  1202. </member>
  1203. <member name="M:System.MSharpExtensionsWeb.AddBefore(System.Web.UI.ControlCollection,System.Web.UI.Control,System.Web.UI.Control)">
  1204. <summary>
  1205. Adds a specified control before another existing control in this collection.
  1206. </summary>
  1207. </member>
  1208. <member name="M:System.MSharpExtensionsWeb.AddBefore(System.Web.UI.ControlCollection,System.Web.UI.Control,System.String)">
  1209. <summary>
  1210. Adds a specified html content before another existing control in this collection.
  1211. </summary>
  1212. </member>
  1213. <member name="M:System.MSharpExtensionsWeb.FindParent``1(System.Web.UI.Control)">
  1214. <summary>
  1215. Gets the first parent of this control which is of the specified type.
  1216. </summary>
  1217. </member>
  1218. <member name="M:System.MSharpExtensionsWeb.ForBrowser(System.Web.UI.Control)">
  1219. <summary>
  1220. Gets a Javascript expression that yield access to this control.
  1221. </summary>
  1222. </member>
  1223. <member name="M:System.MSharpExtensionsWeb.ForJQuery(System.Web.UI.Control)">
  1224. <summary>
  1225. Gets a Javascript expression that yield a jQuery access to this control.
  1226. </summary>
  1227. </member>
  1228. <member name="M:System.MSharpExtensionsWeb.FindParentWithCss(System.Web.UI.Control,System.String)">
  1229. <summary>
  1230. Finds the parent of this control with the specified css class.
  1231. It navigates the control tree up until it finds a matching control.
  1232. </summary>
  1233. </member>
  1234. <member name="M:System.MSharpExtensionsWeb.GetCssClass(System.Web.UI.Control)">
  1235. <summary>
  1236. Gets the Css class of this control.
  1237. </summary>
  1238. </member>
  1239. <member name="M:System.MSharpExtensionsWeb.UnifyValidators(System.Web.UI.Control)">
  1240. <summary>
  1241. This solves the issue with multiple validation summary alert.
  1242. </summary>
  1243. </member>
  1244. <member name="M:System.MSharpExtensionsWeb.GetAllChildren(System.Web.UI.Control)">
  1245. <summary>
  1246. Gets all children of this control.
  1247. </summary>
  1248. </member>
  1249. <member name="M:System.MSharpExtensionsWeb.TransferChildrenTo(System.Web.UI.Control,System.Web.UI.Control)">
  1250. <summary>
  1251. Transfers the children of this control to another specified control.
  1252. </summary>
  1253. </member>
  1254. <member name="M:System.MSharpExtensionsWeb.TransferTo(System.Web.UI.Control,System.Web.UI.Control)">
  1255. <summary>
  1256. Transfers this control to a new parent.
  1257. </summary>
  1258. </member>
  1259. <member name="M:System.MSharpExtensionsWeb.GetValidators(System.Web.UI.Control,System.String)">
  1260. <summary>
  1261. Iterator returns all validators for this control and optional Validation group.
  1262. </summary>
  1263. </member>
  1264. <member name="M:System.MSharpExtensionsWeb.GetValidators``1(System.Web.UI.Control,System.String)">
  1265. <summary>
  1266. Iterator returns all validators of type T for this control and optional Validation group.
  1267. </summary>
  1268. </member>
  1269. <member name="M:System.MSharpExtensionsWeb.GetControlToValidate``1(System.Web.UI.WebControls.BaseValidator)">
  1270. <summary>
  1271. Returns the Control being validated by this Validator.
  1272. </summary>
  1273. </member>
  1274. <member name="M:System.MSharpExtensionsWeb.Remove(System.Web.UI.Control)">
  1275. <summary>
  1276. Removes this Control from it's parent Control on this Page.
  1277. </summary>
  1278. </member>
  1279. <member name="M:System.MSharpExtensionsWeb.IsAjaxCall(System.Web.HttpRequest)">
  1280. <summary>
  1281. Determines whether this is an Ajax call.
  1282. </summary>
  1283. </member>
  1284. <member name="M:System.MSharpExtensionsWeb.Dispatch(System.Web.HttpResponse,System.Byte[],System.String,System.String,System.Boolean)">
  1285. <summary>
  1286. Dispatches a binary data block back to the client.
  1287. </summary>
  1288. </member>
  1289. <member name="M:System.MSharpExtensionsWeb.Dispatch(System.Web.HttpResponse,System.String,System.String,System.String,System.Boolean,System.Text.Encoding)">
  1290. <summary>
  1291. Dispatches a string back to the client as a file.
  1292. </summary>
  1293. </member>
  1294. <member name="M:System.MSharpExtensionsWeb.Dispatch(System.Web.HttpResponse,System.IO.FileInfo,System.String,System.String,System.Boolean)">
  1295. <summary>
  1296. Dispatches a file back to the client.
  1297. </summary>
  1298. <param name="fileName">If set to null, the same file name of the file will be used.</param>
  1299. </member>
  1300. <member name="M:System.MSharpExtensionsWeb.Dispatch(System.Web.HttpResponse,MSharp.Framework.Document,System.String,System.Boolean)">
  1301. <summary>
  1302. Dispatches a file back to the client.
  1303. </summary>
  1304. </member>
  1305. <member name="M:System.MSharpExtensionsWeb.SupportGZip(System.Web.HttpContext)">
  1306. <summary>
  1307. If the request accepts encoding of GZIP then it will compress the response.
  1308. </summary>
  1309. </member>
  1310. <member name="M:System.MSharpExtensionsWeb.IsGet(System.Web.HttpRequest)">
  1311. <summary>
  1312. Determines if this is a GET http request.
  1313. </summary>
  1314. </member>
  1315. <member name="M:System.MSharpExtensionsWeb.IsPost(System.Web.HttpRequest)">
  1316. <summary>
  1317. Determines if this is a POST http request.
  1318. </summary>
  1319. </member>
  1320. <member name="M:System.MSharpExtensionsWeb.GetReturnUrl(System.Web.HttpRequest)">
  1321. <summary>
  1322. Gets the currently specified return URL.
  1323. </summary>
  1324. </member>
  1325. <member name="M:System.MSharpExtensionsWeb.IsBrowser(System.Web.HttpBrowserCapabilities,System.String,System.Int32[])">
  1326. <summary>
  1327. Determines whether this is the specified browser and any of the specified major versions.
  1328. </summary>
  1329. </member>
  1330. <member name="M:System.MSharpExtensionsWeb.Focus(System.Web.UI.Control,System.Boolean)">
  1331. <summary>
  1332. Adds Javascript code to safely set focus on the specified control.
  1333. </summary>
  1334. </member>
  1335. <member name="M:System.MSharpExtensionsWeb.EndWith(System.Web.HttpResponse,System.String,System.String)">
  1336. <summary>
  1337. Writes the specified message in the response and then ends the response.
  1338. </summary>
  1339. </member>
  1340. <member name="M:System.MSharpExtensionsWeb.InjectFile(System.Web.HttpFileCollection,System.String,System.Byte[],System.String,System.String)">
  1341. <summary>
  1342. Injects a file into this http file collection.
  1343. </summary>
  1344. </member>
  1345. <member name="M:System.MSharpExtensionsWeb.ReadAllText(System.Web.HttpPostedFile)">
  1346. <summary>
  1347. Reads the full content of a posted text file.
  1348. </summary>
  1349. </member>
  1350. <member name="M:System.MSharpExtensionsWeb.RemoveFile(System.Web.HttpFileCollection,System.String)">
  1351. <summary>
  1352. Removes a file from this http file collection with the specified key, if it exists.
  1353. </summary>
  1354. </member>
  1355. <member name="M:System.MSharpExtensionsWeb.GetSelectedOrDefault``1(System.Web.UI.WebControls.ListControl)">
  1356. <summary>
  1357. Gets the selected object on this list control or returns null if no object exists for selected item.
  1358. </summary>
  1359. </member>
  1360. <member name="M:System.MSharpExtensionsWeb.MakeTreeView(System.Web.UI.WebControls.GridView,System.Func{MSharp.Framework.Services.IHierarchy,System.Boolean})">
  1361. <summary>
  1362. Converts the grid view to a tree view by adding some spacer and a collapse icon
  1363. to the left side of a web control that has attribute [IsTreeNodeAnchor='true'].
  1364. In case there is not such control the first beginning of the row will be chosen.
  1365. </summary>
  1366. <param name="gridView">The grid view.</param>
  1367. </member>
  1368. <member name="M:System.MSharpExtensionsWeb.MakeTreeView(System.Web.UI.WebControls.GridView,System.Boolean)">
  1369. <summary>
  1370. Converts the grid view to a tree view by adding some spacer and a collapse icon
  1371. to the left side of a web control that has attribute [IsTreeNodeAnchor='true'].
  1372. In case there is not such control the first beginning of the row will be chosen.
  1373. </summary>
  1374. <param name="gridView">The grid view.</param>
  1375. </member>
  1376. <member name="M:System.MSharpExtensionsWeb.Add(System.Web.UI.WebControls.TreeNodeCollection,MSharp.Framework.Services.IHierarchy)">
  1377. <summary>
  1378. Adds a hierarchy of nodes for a specified hirarchical item.
  1379. </summary>
  1380. </member>
  1381. <member name="M:System.MSharpExtensionsWeb.Add``1(System.Web.UI.WebControls.TreeNodeCollection,System.Collections.Generic.IEnumerable{``0})">
  1382. <summary>
  1383. Adds a hierarchy of nodes for the specified hirarchical items.
  1384. </summary>
  1385. </member>
  1386. <member name="M:System.MSharpExtensionsWeb.GetDataItem``1(System.Web.UI.WebControls.TreeNode)">
  1387. <summary>
  1388. Gets the data item of this node.
  1389. ID of the required object will be read from the Value of this node, and then the object of the specified type will be fetched from the database.
  1390. </summary>
  1391. </member>
  1392. <member name="M:System.MSharpExtensionsWeb.FindNode(System.Web.UI.WebControls.TreeView,MSharp.Framework.IEntity)">
  1393. <summary>
  1394. Finds a node in this treeview with its Value equal to the specified object's id.
  1395. </summary>
  1396. </member>
  1397. <member name="M:System.MSharpExtensionsWeb.GetSelectedIds(System.Web.UI.WebControls.TreeView)">
  1398. <summary>
  1399. Gets the selected object IDs in this tree view.
  1400. </summary>
  1401. </member>
  1402. <member name="M:System.MSharpExtensionsWeb.GetAllChildren(System.Web.UI.WebControls.TreeNode)">
  1403. <summary>
  1404. Retreives a list of all the TreeNode objects that are descendants of this calling node, regardless of their degree of separation.
  1405. </summary>
  1406. </member>
  1407. <member name="M:System.MSharpExtensionsWeb.GetAllChildren(System.Web.UI.WebControls.TreeView)">
  1408. <summary>
  1409. Retreives a list of all the TreeNode objects that directly or indirectly children of this tree, regardless of their degree of separation.
  1410. </summary>
  1411. </member>
  1412. </members>
  1413. </doc>