Microsoft.WindowsAPICodePack.xml 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.WindowsAPICodePack</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException">
  8. <summary>
  9. This exception is thrown when there are problems with registering, unregistering or updating applications using Application Restart Recovery.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException.#ctor">
  13. <summary>Default constructor.</summary>
  14. </member>
  15. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException.#ctor(System.String)">
  16. <summary>Initializes an exception with a custom message.</summary>
  17. <param name="message">A custom message for the exception.</param>
  18. </member>
  19. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException.#ctor(System.String,System.Exception)">
  20. <summary>Initializes an exception with custom message and inner exception.</summary>
  21. <param name="message">A custom message for the exception.</param>
  22. <param name="innerException">Inner exception.</param>
  23. </member>
  24. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException.#ctor(System.String,System.Int32)">
  25. <summary>Initializes an exception with custom message and error code.</summary>
  26. <param name="message">A custom message for the exception.</param>
  27. <param name="errorCode">An error code (hresult) from which to generate the exception.</param>
  28. </member>
  29. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  30. <summary>Initializes an exception from serialization info and a context.</summary>
  31. <param name="info">Serialization info from which to create exception.</param>
  32. <param name="context">Streaming context from which to create exception.</param>
  33. </member>
  34. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager">
  35. <summary>
  36. Provides access to the Application Restart and Recovery features available in Windows Vista or higher. Application Restart and
  37. Recovery lets an application do some recovery work to save data before the process exits.
  38. </summary>
  39. </member>
  40. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.ApplicationRecoveryFinished(System.Boolean)">
  41. <summary>Called by an application's <see cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryCallback"/> method to indicate that the recovery work is complete.</summary>
  42. <remarks>
  43. This should be the last call made by the <see cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryCallback"/> method because Windows Error Reporting will terminate the
  44. application after this method is invoked.
  45. </remarks>
  46. <param name="success">
  47. <b>true</b> to indicate the the program was able to complete its recovery work before terminating; otherwise <b>false</b>.
  48. </param>
  49. </member>
  50. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.ApplicationRecoveryInProgress">
  51. <summary>
  52. Called by an application's <see cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryCallback"/> method to indicate that it is still performing recovery work.
  53. </summary>
  54. <returns>A <see cref="T:System.Boolean"/> value indicating whether the user canceled the recovery.</returns>
  55. <exception cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException">
  56. This method must be called from a registered callback method.
  57. </exception>
  58. </member>
  59. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.RegisterForApplicationRecovery(Microsoft.WindowsAPICodePack.ApplicationServices.RecoverySettings)">
  60. <summary>Registers an application for recovery by Application Restart and Recovery.</summary>
  61. <param name="settings">
  62. An object that specifies the callback method, an optional parameter to pass to the callback method and a time interval.
  63. </param>
  64. <exception cref="T:System.ArgumentException">The registration failed due to an invalid parameter.</exception>
  65. <exception cref="T:System.ComponentModel.Win32Exception">The registration failed.</exception>
  66. <remarks>
  67. The time interval is the period of time within which the recovery callback method calls the
  68. <see cref="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.ApplicationRecoveryInProgress"/> method to indicate that it is still performing recovery work.
  69. </remarks>
  70. </member>
  71. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.RegisterForApplicationRestart(Microsoft.WindowsAPICodePack.ApplicationServices.RestartSettings)">
  72. <summary>Registers an application for automatic restart if the application is terminated by Windows Error Reporting.</summary>
  73. <param name="settings">
  74. An object that specifies the command line arguments used to restart the application, and the conditions under which the
  75. application should not be restarted.
  76. </param>
  77. <exception cref="T:System.ArgumentException">Registration failed due to an invalid parameter.</exception>
  78. <exception cref="T:System.InvalidOperationException">The attempt to register failed.</exception>
  79. <remarks>A registered application will not be restarted if it executed for less than 60 seconds before terminating.</remarks>
  80. </member>
  81. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.UnregisterApplicationRecovery">
  82. <summary>Removes an application's recovery registration.</summary>
  83. <exception cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException">
  84. The attempt to unregister for recovery failed.
  85. </exception>
  86. </member>
  87. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.UnregisterApplicationRestart">
  88. <summary>Removes an application's restart registration.</summary>
  89. <exception cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRecoveryException">
  90. The attempt to unregister for restart failed.
  91. </exception>
  92. </member>
  93. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryCallback">
  94. <summary>
  95. The <see cref="T:System.Delegate"/> that represents the callback method invoked by the system when an application has registered for
  96. application recovery.
  97. </summary>
  98. <param name="state">An application-defined state object that is passed to the callback method.</param>
  99. <remarks>
  100. The callback method will be invoked prior to the application being terminated by Windows Error Reporting (WER). To keep WER from
  101. terminating the application before the callback method completes, the callback method must periodically call the
  102. <see cref="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.ApplicationRecoveryInProgress"/> method.
  103. </remarks>
  104. <seealso cref="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.RegisterForApplicationRecovery(Microsoft.WindowsAPICodePack.ApplicationServices.RecoverySettings)"/>
  105. </member>
  106. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryData">
  107. <summary>Defines a class that contains a callback delegate and properties of the application as defined by the user.</summary>
  108. </member>
  109. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryData.#ctor(Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryCallback,System.Object)">
  110. <summary>Initializes a recovery data wrapper with a callback method and the current state of the application.</summary>
  111. <param name="callback">The callback delegate.</param>
  112. <param name="state">The current state of the application.</param>
  113. </member>
  114. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryData.Callback">
  115. <summary>Gets or sets a value that determines the recovery callback function.</summary>
  116. </member>
  117. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryData.State">
  118. <summary>Gets or sets a value that determines the application state.</summary>
  119. </member>
  120. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryData.Invoke">
  121. <summary>Invokes the recovery callback function.</summary>
  122. </member>
  123. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.RecoverySettings">
  124. <summary>
  125. Defines methods and properties for recovery settings, and specifies options for an application that attempts to perform final actions
  126. after a fatal event, such as an unhandled exception.
  127. </summary>
  128. <remarks>This class is used to register for application recovery. See the <see cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager"/> class.</remarks>
  129. </member>
  130. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.RecoverySettings.#ctor(Microsoft.WindowsAPICodePack.ApplicationServices.RecoveryData,System.UInt32)">
  131. <summary>Initializes a new instance of the <b>RecoverySettings</b> class.</summary>
  132. <param name="data">
  133. A recovery data object that contains the callback method (invoked by the system before Windows Error Reporting terminates the
  134. application) and an optional state object.
  135. </param>
  136. <param name="interval">
  137. The time interval within which the callback method must invoke
  138. <see cref="M:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager.ApplicationRecoveryInProgress"/> to prevent WER from terminating the application.
  139. </param>
  140. <seealso cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.ApplicationRestartRecoveryManager"/>
  141. </member>
  142. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.RecoverySettings.PingInterval">
  143. <summary>
  144. Gets the recovery data object that contains the callback method and an optional parameter (usually the state of the application)
  145. to be passed to the callback method.
  146. </summary>
  147. <value>A <see cref="P:Microsoft.WindowsAPICodePack.ApplicationServices.RecoverySettings.RecoveryData"/> object.</value>
  148. </member>
  149. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.RecoverySettings.ToString">
  150. <summary>Returns a string representation of the current state of this object.</summary>
  151. <returns>A <see cref="T:System.String"/> object.</returns>
  152. </member>
  153. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.RestartRestrictions">
  154. <summary>
  155. Specifies the conditions when Windows Error Reporting should not restart an application that has registered for automatic restart.
  156. </summary>
  157. </member>
  158. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.RestartRestrictions.None">
  159. <summary>Always restart the application.</summary>
  160. </member>
  161. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.RestartRestrictions.NotOnCrash">
  162. <summary>Do not restart when the application has crashed.</summary>
  163. </member>
  164. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.RestartRestrictions.NotOnHang">
  165. <summary>Do not restart when the application is hung.</summary>
  166. </member>
  167. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.RestartRestrictions.NotOnPatch">
  168. <summary>Do not restart when the application is terminated due to a system update.</summary>
  169. </member>
  170. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.RestartRestrictions.NotOnReboot">
  171. <summary>Do not restart when the application is terminated because of a system reboot.</summary>
  172. </member>
  173. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.RestartSettings">
  174. <summary>Specifies the options for an application to be automatically restarted by Windows Error Reporting.</summary>
  175. <remarks>Regardless of these settings, the application will not be restarted if it executed for less than 60 seconds before terminating.</remarks>
  176. </member>
  177. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.RestartSettings.#ctor(System.String,Microsoft.WindowsAPICodePack.ApplicationServices.RestartRestrictions)">
  178. <summary>Creates a new instance of the RestartSettings class.</summary>
  179. <param name="command">The command line arguments used to restart the application.</param>
  180. <param name="restrictions">
  181. A bitwise combination of the RestartRestrictions values that specify when the application should not be restarted.
  182. </param>
  183. </member>
  184. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.RestartSettings.Command">
  185. <summary>Gets the command line arguments used to restart the application.</summary>
  186. <value>A <see cref="T:System.String"/> object.</value>
  187. </member>
  188. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.RestartSettings.Restrictions">
  189. <summary>Gets the set of conditions when the application should not be restarted.</summary>
  190. <value>A set of <see cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.RestartRestrictions"/> values.</value>
  191. </member>
  192. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.RestartSettings.ToString">
  193. <summary>Returns a string representation of the current state of this object.</summary>
  194. <returns>A <see cref="T:System.String"/> that displays the command line arguments and restrictions for restarting the application.</returns>
  195. </member>
  196. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManagementNativeMethods.PowerGetActiveScheme(System.IntPtr,System.Guid@)">
  197. <summary>Gets the Guid relating to the currently active power scheme.</summary>
  198. <param name="rootPowerKey">Reserved for future use, this must be set to IntPtr.Zero</param>
  199. <param name="activePolicy">Returns a Guid referring to the currently active power scheme.</param>
  200. </member>
  201. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState">
  202. <summary>A snapshot of the state of the battery.</summary>
  203. </member>
  204. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState.ACOnline">
  205. <summary>Gets a value that indicates whether the battery charger is operating on external power.</summary>
  206. <value>A <see cref="T:System.Boolean"/> value. <b>True</b> indicates the battery charger is operating on AC power.</value>
  207. </member>
  208. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState.ChargeRate">
  209. <summary>Gets the rate of discharge for the battery (in mW).</summary>
  210. <remarks>
  211. If plugged in, fully charged: DischargeRate = 0. If plugged in, charging: DischargeRate = positive mW per hour. If unplugged:
  212. DischargeRate = negative mW per hour.
  213. </remarks>
  214. <value>An <see cref="T:System.Int32"/> value.</value>
  215. </member>
  216. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState.CurrentCharge">
  217. <summary>Gets the current charge of the battery (in mW).</summary>
  218. <value>An <see cref="T:System.Int32"/> value.</value>
  219. </member>
  220. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState.EstimatedTimeRemaining">
  221. <summary>Gets the estimated time remaining until the battery is empty.</summary>
  222. <value>A <see cref="T:System.TimeSpan"/> object.</value>
  223. </member>
  224. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState.MaxCharge">
  225. <summary>Gets the maximum charge of the battery (in mW).</summary>
  226. <value>An <see cref="T:System.Int32"/> value.</value>
  227. </member>
  228. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState.SuggestedBatteryWarningCharge">
  229. <summary>Gets the manufacturer's suggested battery charge level that should cause a warning to be sent to the user.</summary>
  230. <value>An <see cref="T:System.Int32"/> value.</value>
  231. </member>
  232. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState.SuggestedCriticalBatteryCharge">
  233. <summary>Gets the manufacturer's suggested battery charge level that should cause a critical alert to be sent to the user.</summary>
  234. <value>An <see cref="T:System.Int32"/> value.</value>
  235. </member>
  236. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState.ToString">
  237. <summary>Generates a string that represents this <b>BatteryState</b> object.</summary>
  238. <returns>A <see cref="T:System.String"/> representation of this object's current state.</returns>
  239. </member>
  240. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.EventManager">
  241. <summary>
  242. This class keeps track of the current state of each type of event. The MessageManager class tracks event handlers. This class only
  243. deals with each event type (i.e.
  244. BatteryLifePercentChanged) as a whole.
  245. </summary>
  246. </member>
  247. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.EventManager.IsMessageCaught(System.Guid)">
  248. <summary>
  249. Determines if a message should be caught, preventing the event handler from executing. This is needed when an event is initially registered.
  250. </summary>
  251. <param name="eventGuid">The event to check.</param>
  252. <returns>A boolean value. Returns true if the message should be caught.</returns>
  253. </member>
  254. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.ExecutionStates">
  255. <summary>Enumeration of execution states.</summary>
  256. </member>
  257. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.ExecutionStates.None">
  258. <summary>No state configured.</summary>
  259. </member>
  260. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.ExecutionStates.SystemRequired">
  261. <summary>Forces the system to be in the working state by resetting the system idle timer.</summary>
  262. </member>
  263. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.ExecutionStates.DisplayRequired">
  264. <summary>Forces the display to be on by resetting the display idle timer.</summary>
  265. </member>
  266. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.ExecutionStates.AwayModeRequired">
  267. <summary>
  268. Enables away mode. This value must be specified with ES_CONTINUOUS. Away mode should be used only by media-recording and
  269. media-distribution applications that must perform critical background processing on desktop computers while the computer appears
  270. to be sleeping. See Remarks.
  271. Windows Server 2003 and Windows XP/2000: ES_AWAYMODE_REQUIRED is not supported.
  272. </summary>
  273. </member>
  274. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.ExecutionStates.Continuous">
  275. <summary>
  276. Informs the system that the state being set should remain in effect until the next call that uses ES_CONTINUOUS and one of the
  277. other state flags is cleared.
  278. </summary>
  279. </member>
  280. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager">
  281. <summary>This class generates .NET events based on Windows messages. The PowerRegWindow class processes the messages from Windows.</summary>
  282. </member>
  283. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager.RegisterPowerEvent(System.Guid,System.EventHandler)">
  284. <summary>Registers a callback for a power event.</summary>
  285. <param name="eventId">Guid for the event.</param>
  286. <param name="eventToRegister">Event handler for the specified event.</param>
  287. </member>
  288. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager.UnregisterPowerEvent(System.Guid,System.EventHandler)">
  289. <summary>Unregisters an event handler for a power event.</summary>
  290. <param name="eventId">Guid for the event.</param>
  291. <param name="eventToUnregister">Event handler to unregister.</param>
  292. </member>
  293. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager.EnsureInitialized">
  294. <summary>Ensures that the hidden window is initialized and listening for messages.</summary>
  295. </member>
  296. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager.PowerRegWindow">
  297. <summary>Catch Windows messages and generates events for power specific messages.</summary>
  298. </member>
  299. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager.PowerRegWindow.RegisterPowerEvent(System.Guid,System.EventHandler)">
  300. <summary>Adds an event handler to call when Windows sends a message for an event.</summary>
  301. <param name="eventId">Guid for the event.</param>
  302. <param name="eventToRegister">Event handler for the event.</param>
  303. </member>
  304. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager.PowerRegWindow.UnregisterPowerEvent(System.Guid,System.EventHandler)">
  305. <summary>Removes an event handler.</summary>
  306. <param name="eventId">Guid for the event.</param>
  307. <param name="eventToUnregister">Event handler to remove.</param>
  308. <exception cref="T:System.InvalidOperationException">Cannot unregister a function that is not registered.</exception>
  309. </member>
  310. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager.PowerRegWindow.WndProc(System.Windows.Forms.Message@)">
  311. <summary>This method is called when a Windows message is sent to this window. The method calls the registered event handlers.</summary>
  312. </member>
  313. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.MessageManager.PowerRegWindow.ExecuteEvents(System.Collections.ArrayList)">
  314. <summary>Executes any registered event handlers.</summary>
  315. <param name="eventHandlerList">ArrayList of event handlers.</param>
  316. </member>
  317. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.Power.RegisterPowerSettingNotification(System.IntPtr,System.Guid)">
  318. <summary>Registers the application to receive power setting notifications for the specific power setting event.</summary>
  319. <param name="handle">Handle indicating where the power setting notifications are to be sent.</param>
  320. <param name="powerSetting">The GUID of the power setting for which notifications are to be sent.</param>
  321. <returns>Returns a notification handle for unregistering power notifications.</returns>
  322. </member>
  323. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager">
  324. <summary>Enables registration for power-related event notifications and provides access to power settings.</summary>
  325. </member>
  326. <member name="E:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.BatteryLifePercentChanged">
  327. <summary>Raised when the remaining battery life changes.</summary>
  328. <exception cref="T:System.InvalidOperationException">The event handler specified for removal was not registered.</exception>
  329. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  330. </member>
  331. <member name="E:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.IsMonitorOnChanged">
  332. <summary>Raised when the monitor status changes.</summary>
  333. <exception cref="T:System.InvalidOperationException">The event handler specified for removal was not registered.</exception>
  334. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  335. </member>
  336. <member name="E:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.PowerPersonalityChanged">
  337. <summary>Raised each time the active power scheme changes.</summary>
  338. <exception cref="T:System.InvalidOperationException">The event handler specified for removal was not registered.</exception>
  339. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  340. </member>
  341. <member name="E:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.PowerSourceChanged">
  342. <summary>Raised when the power source changes.</summary>
  343. <exception cref="T:System.InvalidOperationException">The event handler specified for removal was not registered.</exception>
  344. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  345. </member>
  346. <member name="E:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.SystemBusyChanged">
  347. <summary>
  348. Raised when the system will not be moving into an idle state in the near future so applications should perform any tasks that
  349. would otherwise prevent the computer from entering an idle state.
  350. </summary>
  351. <exception cref="T:System.InvalidOperationException">The event handler specified for removal was not registered.</exception>
  352. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  353. </member>
  354. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.BatteryLifePercent">
  355. <summary>
  356. Gets a value that indicates the remaining battery life (as a percentage of the full battery charge). This value is in the range
  357. 0-100, where 0 is not charged and 100 is fully charged.
  358. </summary>
  359. <exception cref="T:System.InvalidOperationException">The system does not have a battery.</exception>
  360. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  361. <value>An <see cref="T:System.Int32"/> value.</value>
  362. </member>
  363. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.IsBatteryPresent">
  364. <summary>Gets a value that indicates whether a battery is present. The battery can be a short term battery.</summary>
  365. <exception cref="T:System.PlatformNotSupportedException">Requires XP/Windows Server 2003 or higher.</exception>
  366. <value>A <see cref="T:System.Boolean"/> value.</value>
  367. </member>
  368. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.IsBatteryShortTerm">
  369. <summary>Gets a value that indicates whether the battery is a short term battery.</summary>
  370. <exception cref="T:System.PlatformNotSupportedException">Requires XP/Windows Server 2003 or higher.</exception>
  371. <value>A <see cref="T:System.Boolean"/> value.</value>
  372. </member>
  373. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.IsMonitorOn">
  374. <summary>Gets a value that indictates whether the monitor is on.</summary>
  375. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  376. <value>A <see cref="T:System.Boolean"/> value.</value>
  377. </member>
  378. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.IsUpsPresent">
  379. <summary>Gets a value that indicates a UPS is present to prevent sudden loss of power.</summary>
  380. <exception cref="T:System.PlatformNotSupportedException">Requires XP/Windows Server 2003 or higher.</exception>
  381. <value>A <see cref="T:System.Boolean"/> value.</value>
  382. </member>
  383. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.MonitorRequired">
  384. <summary>Gets or sets a value that indicates whether the monitor is set to remain active.</summary>
  385. <exception cref="T:System.PlatformNotSupportedException">Requires XP/Windows Server 2003 or higher.</exception>
  386. <exception cref="T:System.Security.SecurityException">The caller does not have sufficient privileges to set this property.</exception>
  387. <remarks>
  388. This information is typically used by applications that display information but do not require user interaction. For example,
  389. video playback applications.
  390. </remarks>
  391. <permission cref="T:System.Security.Permissions.SecurityPermission">
  392. to set this property. Demand value: <see cref="F:System.Security.Permissions.SecurityAction.Demand"/>; Named Permission Sets: <b>FullTrust</b>.
  393. </permission>
  394. <value>A <see cref="T:System.Boolean"/> value. <b>True</b> if the monitor is required to remain on.</value>
  395. </member>
  396. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.PowerPersonality">
  397. <summary>Gets a value that indicates the current power scheme.</summary>
  398. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  399. <value>A <see cref="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.PowerPersonality"/> value.</value>
  400. </member>
  401. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.PowerSource">
  402. <summary>Gets the current power source.</summary>
  403. <exception cref="T:System.PlatformNotSupportedException">Requires Vista/Windows Server 2008.</exception>
  404. <value>A <see cref="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.PowerSource"/> value.</value>
  405. </member>
  406. <member name="P:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.RequestBlockSleep">
  407. <summary>Gets or sets a value that indicates whether the system is required to be in the working state.</summary>
  408. <exception cref="T:System.PlatformNotSupportedException">Requires XP/Windows Server 2003 or higher.</exception>
  409. <exception cref="T:System.Security.SecurityException">The caller does not have sufficient privileges to set this property.</exception>
  410. <permission cref="T:System.Security.Permissions.SecurityPermission">
  411. to set this property. Demand value: <see cref="F:System.Security.Permissions.SecurityAction.Demand"/>; Named Permission Sets: <b>FullTrust</b>.
  412. </permission>
  413. <value>A <see cref="T:System.Boolean"/> value.</value>
  414. </member>
  415. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.GetCurrentBatteryState">
  416. <summary>Gets a snapshot of the current battery state.</summary>
  417. <returns>A <see cref="T:Microsoft.WindowsAPICodePack.ApplicationServices.BatteryState"/> instance that represents the state of the battery at the time this method was called.</returns>
  418. <exception cref="T:System.InvalidOperationException">The system does not have a battery.</exception>
  419. <exception cref="T:System.PlatformNotSupportedException">Requires XP/Windows Server 2003 or higher.</exception>
  420. </member>
  421. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManager.SetThreadExecutionState(Microsoft.WindowsAPICodePack.ApplicationServices.ExecutionStates)">
  422. <summary>
  423. Allows an application to inform the system that it is in use, thereby preventing the system from entering the sleeping power
  424. state or turning off the display while the application is running.
  425. </summary>
  426. <param name="executionStateOptions">The thread's execution requirements.</param>
  427. <exception cref="T:System.ComponentModel.Win32Exception">Thrown if the SetThreadExecutionState call fails.</exception>
  428. </member>
  429. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManagerException">
  430. <summary>This exception is thrown when there are problems with getting piece of data within PowerManager.</summary>
  431. </member>
  432. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManagerException.#ctor">
  433. <summary>Default constructor.</summary>
  434. </member>
  435. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManagerException.#ctor(System.String)">
  436. <summary>Initializes an excpetion with a custom message.</summary>
  437. <param name="message">A custom message for the exception.</param>
  438. </member>
  439. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManagerException.#ctor(System.String,System.Exception)">
  440. <summary>Initializes an exception with custom message and inner exception.</summary>
  441. <param name="message">A custom message for the exception.</param>
  442. <param name="innerException">An inner exception on which to base this exception.</param>
  443. </member>
  444. <member name="M:Microsoft.WindowsAPICodePack.ApplicationServices.PowerManagerException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  445. <summary>Initializes an exception from serialization info and a context.</summary>
  446. <param name="info">SerializationInfo for the exception.</param>
  447. <param name="context">StreamingContext for the exception.</param>
  448. </member>
  449. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.PowerPersonality">
  450. <summary>Specifies the supported power personalities.</summary>
  451. </member>
  452. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.PowerPersonality.Unknown">
  453. <summary>The power personality Guid does not match a known value.</summary>
  454. </member>
  455. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.PowerPersonality.HighPerformance">
  456. <summary>Power settings designed to deliver maximum performance at the expense of power consumption savings.</summary>
  457. </member>
  458. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.PowerPersonality.PowerSaver">
  459. <summary>Power settings designed consume minimum power at the expense of system performance and responsiveness.</summary>
  460. </member>
  461. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.PowerPersonality.Automatic">
  462. <summary>Power settings designed to balance performance and power consumption.</summary>
  463. </member>
  464. <member name="T:Microsoft.WindowsAPICodePack.ApplicationServices.PowerSource">
  465. <summary>Specifies the power source currently supplying power to the system.</summary>
  466. <remarks>
  467. Application should be aware of the power source because some power sources provide a finite power supply. An application might take
  468. steps to conserve power while the system is using such a source.
  469. </remarks>
  470. </member>
  471. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.PowerSource.AC">
  472. <summary>
  473. The computer is powered by an AC power source or a similar device, such as a laptop powered by a 12V automotive adapter.
  474. </summary>
  475. </member>
  476. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.PowerSource.Battery">
  477. <summary>
  478. The computer is powered by a built-in battery. A battery has a limited amount of power; applications should conserve resources
  479. where possible.
  480. </summary>
  481. </member>
  482. <member name="F:Microsoft.WindowsAPICodePack.ApplicationServices.PowerSource.Ups">
  483. <summary>The computer is powered by a short-term power source such as a UPS device.</summary>
  484. </member>
  485. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.DialogControl">
  486. <summary>Abstract base class for all dialog controls</summary>
  487. </member>
  488. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.#ctor">
  489. <summary>Creates a new instance of a dialog control</summary>
  490. </member>
  491. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.#ctor(System.String)">
  492. <summary>Creates a new instance of a dialog control with the specified name.</summary>
  493. <param name="name">The name for this dialog.</param>
  494. </member>
  495. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.HostingDialog">
  496. <summary>The native dialog that is hosting this control. This property is null is there is not associated dialog</summary>
  497. </member>
  498. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.Id">
  499. <summary>Gets the identifier for this control.</summary>
  500. <value>An <see cref="T:System.Int32"/> value.</value>
  501. </member>
  502. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.Name">
  503. <summary>Gets the name for this control.</summary>
  504. <value>A <see cref="T:System.String"/> value.</value>
  505. </member>
  506. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.Equals(System.Object)">
  507. <summary>Compares two objects to determine whether they are equal</summary>
  508. <param name="obj">The object to compare against.</param>
  509. <returns>A <see cref="T:System.Boolean"/> value.</returns>
  510. </member>
  511. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.GetHashCode">
  512. <summary>Serves as a hash function for a particular type.</summary>
  513. <returns>An <see cref="T:System.Int32"/> hash code for this control.</returns>
  514. </member>
  515. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.ApplyPropertyChange(System.String)">
  516. <summary>
  517. Calls the hosting dialog, if it exists, to
  518. to indicate that a property has changed, and that
  519. the dialog should do whatever is necessary
  520. to propagate the change to the native control.
  521. Note that if the dialog isn't set yet,
  522. there are no restrictions on setting the property.
  523. </summary>
  524. <param name="propName">The name of the property that is changing.</param>
  525. </member>
  526. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControl.CheckPropertyChangeAllowed(System.String)">
  527. <summary>
  528. Calls the hosting dialog, if it exists, to check whether the
  529. property can be set in the dialog's current state.
  530. The host should throw an exception if the change is not supported.
  531. Note that if the dialog isn't set yet,
  532. there are no restrictions on setting the property.
  533. </summary>
  534. <param name="propName">The name of the property that is changing</param>
  535. </member>
  536. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.DialogControlCollection`1">
  537. <summary>Strongly typed collection for dialog controls.</summary>
  538. <typeparam name="T">DialogControl</typeparam>
  539. </member>
  540. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.DialogControlCollection`1.Item(System.String)">
  541. <summary>
  542. Defines the indexer that supports accessing controls by name.
  543. </summary>
  544. <remarks>
  545. <para>Control names are case sensitive.</para>
  546. <para>This indexer is useful when the dialog is created in XAML
  547. rather than constructed in code.</para></remarks>
  548. <exception cref="T:System.ArgumentException">
  549. The name cannot be null or a zero-length string.</exception>
  550. <remarks>If there is more than one control with the same name, only the <B>first control</B> will be returned.</remarks>
  551. </member>
  552. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControlCollection`1.GetControlbyId(System.Int32)">
  553. <summary>Searches for the control who's id matches the value passed in the <paramref name="id"/> parameter.</summary>
  554. <param name="id">An integer containing the identifier of the control being searched for.</param>
  555. <returns>A DialogControl who's id matches the value of the <paramref name="id"/> parameter.</returns>
  556. </member>
  557. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControlCollection`1.InsertItem(System.Int32,`0)">
  558. <summary>Inserts an dialog control at the specified index.</summary>
  559. <param name="index">The location to insert the control.</param>
  560. <param name="control">The item to insert.</param>
  561. <permission cref="T:System.InvalidOperationException">
  562. A control with the same name already exists in this collection -or- the control is being hosted by another dialog -or- the
  563. associated dialog is showing and cannot be modified.
  564. </permission>
  565. </member>
  566. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.DialogControlCollection`1.RemoveItem(System.Int32)">
  567. <summary>Removes the control at the specified index.</summary>
  568. <param name="index">The location of the control to remove.</param>
  569. <permission cref="T:System.InvalidOperationException">The associated dialog is showing and cannot be modified.</permission>
  570. </member>
  571. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.IDialogControlHost">
  572. <summary>Indicates that the implementing class is a dialog that can host customizable dialog controls (subclasses of DialogControl).</summary>
  573. </member>
  574. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.IDialogControlHost.ApplyCollectionChanged">
  575. <summary>Applies changes to the collection.</summary>
  576. </member>
  577. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.IDialogControlHost.ApplyControlPropertyChange(System.String,Microsoft.WindowsAPICodePack.Dialogs.DialogControl)">
  578. <summary>Called when a control currently in the collection has a property changed.</summary>
  579. <param name="propertyName">The name of the property changed.</param>
  580. <param name="control">The control whose property has changed.</param>
  581. </member>
  582. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.IDialogControlHost.IsCollectionChangeAllowed">
  583. <summary>Returns if changes to the collection are allowed.</summary>
  584. <returns>true if collection change is allowed.</returns>
  585. </member>
  586. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.IDialogControlHost.IsControlPropertyChangeAllowed(System.String,Microsoft.WindowsAPICodePack.Dialogs.DialogControl)">
  587. <summary>
  588. Handle notifications of individual child pseudo-controls' properties changing.. Prefilter should throw if the property cannot be
  589. set in the dialog's current state. PostProcess should pass on changes to native control, if appropriate.
  590. </summary>
  591. <param name="propertyName">The name of the property.</param>
  592. <param name="control">The control propertyName applies to.</param>
  593. <returns>true if the property change is allowed.</returns>
  594. </member>
  595. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog">
  596. <summary>
  597. Encapsulates a new-to-Vista Win32 TaskDialog window
  598. - a powerful successor to the MessageBox available in previous versions of Windows.
  599. </summary>
  600. </member>
  601. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Finalize">
  602. <summary>TaskDialog Finalizer</summary>
  603. </member>
  604. <member name="E:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Closing">
  605. <summary>Occurs when the TaskDialog is closing.</summary>
  606. </member>
  607. <member name="E:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.HelpInvoked">
  608. <summary>Occurs when a user clicks on Help.</summary>
  609. </member>
  610. <member name="E:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.HyperlinkClick">
  611. <summary>Occurs when a user clicks a hyperlink.</summary>
  612. </member>
  613. <member name="E:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Opened">
  614. <summary>Occurs when the TaskDialog is opened.</summary>
  615. </member>
  616. <member name="E:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Tick">
  617. <summary>Occurs when a progress bar changes.</summary>
  618. </member>
  619. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.IsPlatformSupported">
  620. <summary>Indicates whether this feature is supported on the current platform.</summary>
  621. </member>
  622. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Cancelable">
  623. <summary>Gets or sets a value that determines if Cancelable is set.</summary>
  624. </member>
  625. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Caption">
  626. <summary>Gets or sets a value that contains the caption text.</summary>
  627. </member>
  628. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Controls">
  629. <summary>Gets a value that contains the TaskDialog controls.</summary>
  630. </member>
  631. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.DefaultButton">
  632. <summary>Gets or sets a value that contains the default button.</summary>
  633. </member>
  634. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.DetailsCollapsedLabel">
  635. <summary>Gets or sets a value that contains the collapsed control text.</summary>
  636. </member>
  637. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.DetailsExpanded">
  638. <summary>Gets or sets a value that determines if the details section is expanded.</summary>
  639. </member>
  640. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.DetailsExpandedLabel">
  641. <summary>Gets or sets a value that contains the expanded control text.</summary>
  642. </member>
  643. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.DetailsExpandedText">
  644. <summary>Gets or sets a value that contains the expanded text in the details section.</summary>
  645. </member>
  646. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.ExpansionMode">
  647. <summary>Gets or sets a value that contains the expansion mode for this dialog.</summary>
  648. </member>
  649. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.FooterCheckBoxChecked">
  650. <summary>Gets or sets a value that indicates if the footer checkbox is checked.</summary>
  651. </member>
  652. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.FooterCheckBoxText">
  653. <summary>Gets or sets a value that contains the footer check box text.</summary>
  654. </member>
  655. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.FooterIcon">
  656. <summary>Gets or sets a value that contains the footer icon.</summary>
  657. </member>
  658. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.FooterText">
  659. <summary>Gets or sets a value that contains the footer text.</summary>
  660. </member>
  661. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.HyperlinksEnabled">
  662. <summary>Gets or sets a value that determines if hyperlinks are enabled.</summary>
  663. </member>
  664. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Icon">
  665. <summary>Gets or sets a value that contains the TaskDialog main icon.</summary>
  666. </member>
  667. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.InstructionText">
  668. <summary>Gets or sets a value that contains the instruction text.</summary>
  669. </member>
  670. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.OwnerWindowHandle">
  671. <summary>Gets or sets a value that contains the owner window's handle.</summary>
  672. </member>
  673. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.ProgressBar">
  674. <summary>
  675. Gets or sets the progress bar on the taskdialog. ProgressBar a visual representation of the progress of a long running operation.
  676. </summary>
  677. </member>
  678. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.StandardButtons">
  679. <summary>Gets or sets a value that contains the standard buttons.</summary>
  680. </member>
  681. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.StartupLocation">
  682. <summary>Gets or sets a value that contains the startup location.</summary>
  683. </member>
  684. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Text">
  685. <summary>Gets or sets a value that contains the message text.</summary>
  686. </member>
  687. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.#ctor">
  688. <summary>Creates a basic TaskDialog window</summary>
  689. </member>
  690. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Show(System.String)">
  691. <summary>Creates and shows a task dialog with the specified message text.</summary>
  692. <param name="text">The text to display.</param>
  693. <returns>The dialog result.</returns>
  694. </member>
  695. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Show(System.String,System.String)">
  696. <summary>Creates and shows a task dialog with the specified supporting text and main instruction.</summary>
  697. <param name="text">The supporting text to display.</param>
  698. <param name="instructionText">The main instruction text to display.</param>
  699. <returns>The dialog result.</returns>
  700. </member>
  701. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Show(System.String,System.String,System.String)">
  702. <summary>Creates and shows a task dialog with the specified supporting text, main instruction, and dialog caption.</summary>
  703. <param name="text">The supporting text to display.</param>
  704. <param name="instructionText">The main instruction text to display.</param>
  705. <param name="caption">The caption for the dialog.</param>
  706. <returns>The dialog result.</returns>
  707. </member>
  708. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Close">
  709. <summary>Close TaskDialog</summary>
  710. <exception cref="T:System.InvalidOperationException">if TaskDialog is not showing.</exception>
  711. </member>
  712. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Close(Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult)">
  713. <summary>Close TaskDialog with a given TaskDialogResult</summary>
  714. <param name="closingResult">TaskDialogResult to return from the TaskDialog.Show() method</param>
  715. <exception cref="T:System.InvalidOperationException">if TaskDialog is not showing.</exception>
  716. </member>
  717. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Dispose">
  718. <summary>Dispose TaskDialog Resources</summary>
  719. </member>
  720. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Dispose(System.Boolean)">
  721. <summary>Dispose TaskDialog Resources</summary>
  722. <param name="disposing">If true, indicates that this is being called via Dispose rather than via the finalizer.</param>
  723. </member>
  724. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Show">
  725. <summary>Creates and shows a task dialog.</summary>
  726. <returns>The dialog result.</returns>
  727. </member>
  728. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.ApplyTextConfiguration(Microsoft.WindowsAPICodePack.Dialogs.TaskDialogNativeMethods.TaskDialogConfiguration)">
  729. <summary>Sets important text properties.</summary>
  730. <param name="dialogConfig">An instance of a <see cref="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogNativeMethods.TaskDialogConfiguration"/> object.</param>
  731. </member>
  732. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogBar">
  733. <summary>Defines a common class for all task dialog bar controls, such as the progress and marquee bars.</summary>
  734. </member>
  735. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogBar.#ctor">
  736. <summary>Creates a new instance of this class.</summary>
  737. </member>
  738. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogBar.#ctor(System.String)">
  739. <summary>Creates a new instance of this class with the specified name.</summary>
  740. <param name="name">The name for this control.</param>
  741. </member>
  742. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogBar.State">
  743. <summary>Gets or sets the state of the progress bar.</summary>
  744. </member>
  745. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogBar.Reset">
  746. <summary>Resets the state of the control to normal.</summary>
  747. </member>
  748. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButton">
  749. <summary>Implements a button that can be hosted in a task dialog.</summary>
  750. </member>
  751. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButton.#ctor">
  752. <summary>Creates a new instance of this class.</summary>
  753. </member>
  754. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButton.#ctor(System.String,System.String)">
  755. <summary>Creates a new instance of this class with the specified property settings.</summary>
  756. <param name="name">The name of the button.</param>
  757. <param name="text">The button label.</param>
  758. </member>
  759. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButton.UseElevationIcon">
  760. <summary>Gets or sets a value that controls whether the elevation icon is displayed.</summary>
  761. </member>
  762. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase">
  763. <summary>
  764. Defines the abstract base class for task dialog buttons. Classes that inherit from this class will inherit the Text property defined
  765. in this class.
  766. </summary>
  767. </member>
  768. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase.#ctor">
  769. <summary>Creates a new instance on a task dialog button.</summary>
  770. </member>
  771. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase.#ctor(System.String,System.String)">
  772. <summary>Creates a new instance on a task dialog button with the specified name and text.</summary>
  773. <param name="name">The name for this button.</param>
  774. <param name="text">The label for this button.</param>
  775. </member>
  776. <member name="E:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase.Click">
  777. <summary>Raised when the task dialog button is clicked.</summary>
  778. </member>
  779. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase.Default">
  780. <summary>Gets or sets a value that indicates whether this button is the default button.</summary>
  781. </member>
  782. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase.Enabled">
  783. <summary>
  784. Gets or sets a value that determines whether the button is enabled. The enabled state can cannot be changed before the dialog is shown.
  785. </summary>
  786. </member>
  787. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase.Text">
  788. <summary>Gets or sets the button text.</summary>
  789. </member>
  790. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase.ToString">
  791. <summary>Returns the Text property value for this button.</summary>
  792. <returns>A <see cref="T:System.String"/>.</returns>
  793. </member>
  794. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogClosingEventArgs">
  795. <summary>Data associated with <see cref="E:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog.Closing"/> event.</summary>
  796. </member>
  797. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogClosingEventArgs.CustomButton">
  798. <summary>Gets or sets the text of the custom button that was clicked.</summary>
  799. </member>
  800. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogClosingEventArgs.TaskDialogResult">
  801. <summary>Gets or sets the standard button that was clicked.</summary>
  802. </member>
  803. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogCommandLink">
  804. <summary>Represents a command-link.</summary>
  805. </member>
  806. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogCommandLink.#ctor">
  807. <summary>Creates a new instance of this class.</summary>
  808. </member>
  809. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogCommandLink.#ctor(System.String,System.String)">
  810. <summary>Creates a new instance of this class with the specified name and label.</summary>
  811. <param name="name">The name for this button.</param>
  812. <param name="text">The label for this button.</param>
  813. </member>
  814. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogCommandLink.#ctor(System.String,System.String,System.String)">
  815. <summary>Creates a new instance of this class with the specified name,label, and instruction.</summary>
  816. <param name="name">The name for this button.</param>
  817. <param name="text">The label for this button.</param>
  818. <param name="instruction">The instruction for this command link.</param>
  819. </member>
  820. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogCommandLink.Instruction">
  821. <summary>Gets or sets the instruction associated with this command link button.</summary>
  822. </member>
  823. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogCommandLink.ToString">
  824. <summary>Returns a string representation of this object.</summary>
  825. <returns>A <see cref="T:System.String"/></returns>
  826. </member>
  827. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogControl">
  828. <summary>Declares the abstract base class for all custom task dialog controls.</summary>
  829. </member>
  830. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogControl.#ctor">
  831. <summary>Creates a new instance of a task dialog control.</summary>
  832. </member>
  833. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogControl.#ctor(System.String)">
  834. <summary>Creates a new instance of a task dialog control with the specified name.</summary>
  835. <param name="name">The name for this control.</param>
  836. </member>
  837. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogDefaultButton">
  838. <summary>Identifies the default button that can be set via TaskDialog.</summary>
  839. </member>
  840. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogDefaultButton.None">
  841. <summary>No default button.</summary>
  842. </member>
  843. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogDefaultButton.Ok">
  844. <summary>An "OK" button.</summary>
  845. </member>
  846. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogDefaultButton.Yes">
  847. <summary>A "Yes" button.</summary>
  848. </member>
  849. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogDefaultButton.No">
  850. <summary>A "No" button.</summary>
  851. </member>
  852. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogDefaultButton.Cancel">
  853. <summary>A "Cancel" button.</summary>
  854. </member>
  855. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogDefaultButton.Retry">
  856. <summary>A "Retry" button.</summary>
  857. </member>
  858. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogDefaultButton.Close">
  859. <summary>A "Close" button.</summary>
  860. </member>
  861. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogExpandedDetailsLocation">
  862. <summary>Specifies the options for expand/collapse sections in dialogs.</summary>
  863. </member>
  864. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogExpandedDetailsLocation.Hide">
  865. <summary>Do not show the content.</summary>
  866. </member>
  867. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogExpandedDetailsLocation.ExpandContent">
  868. <summary>Show the content.</summary>
  869. </member>
  870. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogExpandedDetailsLocation.ExpandFooter">
  871. <summary>Expand the footer content.</summary>
  872. </member>
  873. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogHyperlinkClickedEventArgs">
  874. <summary>Defines event data associated with a HyperlinkClick event.</summary>
  875. </member>
  876. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogHyperlinkClickedEventArgs.#ctor(System.String)">
  877. <summary>Creates a new instance of this class with the specified link text.</summary>
  878. <param name="linkText">The text of the hyperlink that was clicked.</param>
  879. </member>
  880. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogHyperlinkClickedEventArgs.LinkText">
  881. <summary>Gets or sets the text of the hyperlink that was clicked.</summary>
  882. </member>
  883. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar">
  884. <summary>Provides a visual representation of the progress of a long running operation.</summary>
  885. </member>
  886. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar.#ctor">
  887. <summary>Creates a new instance of this class.</summary>
  888. </member>
  889. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar.#ctor(System.String)">
  890. <summary>
  891. Creates a new instance of this class with the specified name. And using the default values: Min = 0, Max = 100, Current = 0
  892. </summary>
  893. <param name="name">The name of the control.</param>
  894. </member>
  895. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar.#ctor(System.Int32,System.Int32,System.Int32)">
  896. <summary>Creates a new instance of this class with the specified minimum, maximum and current values.</summary>
  897. <param name="minimum">The minimum value for this control.</param>
  898. <param name="maximum">The maximum value for this control.</param>
  899. <param name="value">The current value for this control.</param>
  900. </member>
  901. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar.Maximum">
  902. <summary>Gets or sets the maximum value for the control.</summary>
  903. </member>
  904. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar.Minimum">
  905. <summary>Gets or sets the minimum value for the control.</summary>
  906. </member>
  907. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar.Value">
  908. <summary>Gets or sets the current value for the control.</summary>
  909. </member>
  910. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar.HasValidValues">
  911. <summary>Verifies that the progress bar's value is between its minimum and maximum.</summary>
  912. </member>
  913. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBar.Reset">
  914. <summary>Resets the control to its minimum value.</summary>
  915. </member>
  916. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBarState">
  917. <summary>Sets the state of a task dialog progress bar.</summary>
  918. </member>
  919. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBarState.None">
  920. <summary>Uninitialized state, this should never occur.</summary>
  921. </member>
  922. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBarState.Normal">
  923. <summary>Normal state.</summary>
  924. </member>
  925. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBarState.Error">
  926. <summary>An error occurred.</summary>
  927. </member>
  928. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBarState.Paused">
  929. <summary>The progress is paused.</summary>
  930. </member>
  931. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogProgressBarState.Marquee">
  932. <summary>Displays marquee (indeterminate) style progress</summary>
  933. </member>
  934. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogRadioButton">
  935. <summary>Defines a radio button that can be hosted in by a <see cref="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialog"/> object.</summary>
  936. </member>
  937. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogRadioButton.#ctor">
  938. <summary>Creates a new instance of this class.</summary>
  939. </member>
  940. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogRadioButton.#ctor(System.String,System.String)">
  941. <summary>Creates a new instance of this class with the specified name and text.</summary>
  942. <param name="name">The name for this control.</param>
  943. <param name="text">
  944. The value for this controls <see cref="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogButtonBase.Text"/> property.
  945. </param>
  946. </member>
  947. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult">
  948. <summary>Indicates the various buttons and options clicked by the user on the task dialog.</summary>
  949. </member>
  950. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult.None">
  951. <summary>No button was selected.</summary>
  952. </member>
  953. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult.Ok">
  954. <summary>"OK" button was clicked</summary>
  955. </member>
  956. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult.Yes">
  957. <summary>"Yes" button was clicked</summary>
  958. </member>
  959. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult.No">
  960. <summary>"No" button was clicked</summary>
  961. </member>
  962. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult.Cancel">
  963. <summary>"Cancel" button was clicked</summary>
  964. </member>
  965. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult.Retry">
  966. <summary>"Retry" button was clicked</summary>
  967. </member>
  968. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult.Close">
  969. <summary>"Close" button was clicked</summary>
  970. </member>
  971. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogResult.CustomButtonClicked">
  972. <summary>A custom button was clicked.</summary>
  973. </member>
  974. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardButtons">
  975. <summary>Identifies one of the standard buttons that can be displayed via TaskDialog.</summary>
  976. </member>
  977. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardButtons.None">
  978. <summary>No buttons on the dialog.</summary>
  979. </member>
  980. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardButtons.Ok">
  981. <summary>An "OK" button.</summary>
  982. </member>
  983. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardButtons.Yes">
  984. <summary>A "Yes" button.</summary>
  985. </member>
  986. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardButtons.No">
  987. <summary>A "No" button.</summary>
  988. </member>
  989. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardButtons.Cancel">
  990. <summary>A "Cancel" button.</summary>
  991. </member>
  992. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardButtons.Retry">
  993. <summary>A "Retry" button.</summary>
  994. </member>
  995. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardButtons.Close">
  996. <summary>A "Close" button.</summary>
  997. </member>
  998. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardIcon">
  999. <summary>Specifies the icon displayed in a task dialog.</summary>
  1000. </member>
  1001. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardIcon.None">
  1002. <summary>Displays no icons (default).</summary>
  1003. </member>
  1004. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardIcon.Warning">
  1005. <summary>Displays the warning icon.</summary>
  1006. </member>
  1007. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardIcon.Error">
  1008. <summary>Displays the error icon.</summary>
  1009. </member>
  1010. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardIcon.Information">
  1011. <summary>Displays the Information icon.</summary>
  1012. </member>
  1013. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStandardIcon.Shield">
  1014. <summary>Displays the User Account Control shield.</summary>
  1015. </member>
  1016. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStartupLocation">
  1017. <summary>Specifies the initial display location for a task dialog.</summary>
  1018. </member>
  1019. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStartupLocation.CenterScreen">
  1020. <summary>The window placed in the center of the screen.</summary>
  1021. </member>
  1022. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogStartupLocation.CenterOwner">
  1023. <summary>The window centered relative to the window that launched the dialog.</summary>
  1024. </member>
  1025. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogTickEventArgs">
  1026. <summary>The event data for a TaskDialogTick event.</summary>
  1027. </member>
  1028. <member name="M:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogTickEventArgs.#ctor(System.Int32)">
  1029. <summary>Initializes the data associated with the TaskDialog tick event.</summary>
  1030. <param name="ticks">The total number of ticks since the control was activated.</param>
  1031. </member>
  1032. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogTickEventArgs.Ticks">
  1033. <summary>Gets a value that determines the current number of ticks.</summary>
  1034. </member>
  1035. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.DialogShowState">
  1036. <summary>Dialog Show State</summary>
  1037. </member>
  1038. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.DialogShowState.PreShow">
  1039. <summary>Pre Show</summary>
  1040. </member>
  1041. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.DialogShowState.Showing">
  1042. <summary>Currently Showing</summary>
  1043. </member>
  1044. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.DialogShowState.Closing">
  1045. <summary>Currently Closing</summary>
  1046. </member>
  1047. <member name="F:Microsoft.WindowsAPICodePack.Dialogs.DialogShowState.Closed">
  1048. <summary>Closed</summary>
  1049. </member>
  1050. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.EnableThemingInScope">
  1051. http://support.microsoft.com/kb/830033
  1052. <devdoc>
  1053. This class is intended to use with the C# 'using' statement in to activate an activation context for turning on visual theming at the
  1054. beginning of a scope, and have it automatically deactivated when the scope is exited.
  1055. </devdoc>
  1056. </member>
  1057. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.NativeTaskDialog">
  1058. <summary>
  1059. Encapsulates the native logic required to create, configure, and show a TaskDialog, via the TaskDialogIndirect() Win32 function.
  1060. </summary>
  1061. <remarks>
  1062. A new instance of this class should be created for each messagebox show, as the HWNDs for TaskDialogs do not remain constant across
  1063. calls to TaskDialogIndirect.
  1064. </remarks>
  1065. </member>
  1066. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.NativeTaskDialogSettings">
  1067. <summary>
  1068. Encapsulates additional configuration needed by NativeTaskDialog
  1069. that it can't get from the TASKDIALOGCONFIG struct.
  1070. </summary>
  1071. </member>
  1072. <member name="T:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogNativeMethods">
  1073. <summary>
  1074. Internal class containing most native interop declarations used throughout the library. Functions that are not performance intensive
  1075. belong in this class.
  1076. </summary>
  1077. </member>
  1078. <member name="P:Microsoft.WindowsAPICodePack.Dialogs.TaskDialogNativeMethods.IconUnion.MainIcon">
  1079. <summary>Gets the handle to the Icon</summary>
  1080. </member>
  1081. <member name="T:Microsoft.WindowsAPICodePack.Net.Network">
  1082. <summary>
  1083. Represents a network on the local machine. It can also represent a collection of network connections with a similar network signature.
  1084. </summary>
  1085. <remarks>Instances of this class are obtained by calling methods on the <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkListManager"/> class.</remarks>
  1086. </member>
  1087. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.Category">
  1088. <summary>Gets or sets the category of a network. The categories are trusted, untrusted, or authenticated.</summary>
  1089. <value>A <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkCategory"/> value.</value>
  1090. </member>
  1091. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.ConnectedTime">
  1092. <summary>Gets the local date and time when the network was connected.</summary>
  1093. <value>A <see cref="T:System.DateTime"/> object.</value>
  1094. </member>
  1095. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.Connections">
  1096. <summary>Gets the network connections for the network.</summary>
  1097. <value>A <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkConnectionCollection"/> object.</value>
  1098. </member>
  1099. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.Connectivity">
  1100. <summary>Gets the connectivity state of the network.</summary>
  1101. <value>A <see cref="P:Microsoft.WindowsAPICodePack.Net.Network.Connectivity"/> value.</value>
  1102. <remarks>Connectivity provides information on whether the network is connected, and the protocols in use for network traffic.</remarks>
  1103. </member>
  1104. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.CreatedTime">
  1105. <summary>Gets the local date and time when the network was created.</summary>
  1106. <value>A <see cref="T:System.DateTime"/> object.</value>
  1107. </member>
  1108. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.Description">
  1109. <summary>Gets or sets a description for the network.</summary>
  1110. <value>A <see cref="T:System.String"/> value.</value>
  1111. </member>
  1112. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.DomainType">
  1113. <summary>Gets the domain type of the network.</summary>
  1114. <value>A <see cref="P:Microsoft.WindowsAPICodePack.Net.Network.DomainType"/> value.</value>
  1115. <remarks>
  1116. The domain indictates whether the network is an Active Directory Network, and whether the machine has been authenticated by
  1117. Active Directory.
  1118. </remarks>
  1119. </member>
  1120. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.Name">
  1121. <summary>Gets or sets the name of the network.</summary>
  1122. <value>A <see cref="T:System.String"/> value.</value>
  1123. </member>
  1124. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.NetworkId">
  1125. <summary>Gets a unique identifier for the network.</summary>
  1126. <value>A <see cref="T:System.Guid"/> value.</value>
  1127. </member>
  1128. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.IsConnected">
  1129. <summary>Gets a value that indicates whether there is network connectivity.</summary>
  1130. <value>A <see cref="T:System.Boolean"/> value.</value>
  1131. </member>
  1132. <member name="P:Microsoft.WindowsAPICodePack.Net.Network.IsConnectedToInternet">
  1133. <summary>Gets a value that indicates whether there is Internet connectivity.</summary>
  1134. <value>A <see cref="T:System.Boolean"/> value.</value>
  1135. </member>
  1136. <member name="T:Microsoft.WindowsAPICodePack.Net.NetworkCollection">
  1137. <summary>An enumerable collection of <see cref="T:Microsoft.WindowsAPICodePack.Net.Network"/> objects.</summary>
  1138. </member>
  1139. <member name="M:Microsoft.WindowsAPICodePack.Net.NetworkCollection.GetEnumerator">
  1140. <summary>Returns the strongly typed enumerator for this collection.</summary>
  1141. <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"/> object.</returns>
  1142. </member>
  1143. <member name="M:Microsoft.WindowsAPICodePack.Net.NetworkCollection.System#Collections#IEnumerable#GetEnumerator">
  1144. <summary>
  1145. Returns the enumerator for this collection.
  1146. </summary>
  1147. <returns>An <see cref="T:System.Collections.IEnumerator"/> object.</returns>
  1148. </member>
  1149. <member name="T:Microsoft.WindowsAPICodePack.Net.NetworkConnection">
  1150. <summary>Represents a connection to a network.</summary>
  1151. <remarks>
  1152. A collection containing instances of this class is obtained by calling the
  1153. <see cref="P:Microsoft.WindowsAPICodePack.Net.Network.Connections"/> property.
  1154. </remarks>
  1155. </member>
  1156. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.AdapterId">
  1157. <summary>Gets the adapter identifier for this connection.</summary>
  1158. <value>A <see cref="T:System.Guid"/> object.</value>
  1159. </member>
  1160. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.ConnectionId">
  1161. <summary>Gets the unique identifier for this connection.</summary>
  1162. <value>A <see cref="T:System.Guid"/> object.</value>
  1163. </member>
  1164. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.Connectivity">
  1165. <summary>Gets a value that indicates the connectivity of this connection.</summary>
  1166. <value>A <see cref="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.Connectivity"/> value.</value>
  1167. </member>
  1168. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.DomainType">
  1169. <summary>
  1170. Gets a value that indicates whether the network associated with this connection is an Active Directory network and whether the
  1171. machine has been authenticated by Active Directory.
  1172. </summary>
  1173. <value>A <see cref="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.DomainType"/> value.</value>
  1174. </member>
  1175. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.IsConnected">
  1176. <summary>Gets a value that indicates whether this connection has network connectivity.</summary>
  1177. <value>A <see cref="T:System.Boolean"/> value.</value>
  1178. </member>
  1179. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.IsConnectedToInternet">
  1180. <summary>Gets a value that indicates whether this connection has Internet access.</summary>
  1181. <value>A <see cref="T:System.Boolean"/> value.</value>
  1182. </member>
  1183. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.Network">
  1184. <summary>Retrieves an object that represents the network associated with this connection.</summary>
  1185. <returns>A <see cref="P:Microsoft.WindowsAPICodePack.Net.NetworkConnection.Network"/> object.</returns>
  1186. </member>
  1187. <member name="T:Microsoft.WindowsAPICodePack.Net.NetworkConnectionCollection">
  1188. <summary>An enumerable collection of <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkConnection"/> objects.</summary>
  1189. </member>
  1190. <member name="M:Microsoft.WindowsAPICodePack.Net.NetworkConnectionCollection.GetEnumerator">
  1191. <summary>Returns the strongly typed enumerator for this collection.</summary>
  1192. <returns>A <see cref="T:System.Collections.Generic.IEnumerator`1"/> object.</returns>
  1193. </member>
  1194. <member name="M:Microsoft.WindowsAPICodePack.Net.NetworkConnectionCollection.System#Collections#IEnumerable#GetEnumerator">
  1195. <summary>
  1196. Returns the enumerator for this collection.
  1197. </summary>
  1198. <returns>A <see cref="T:System.Collections.IEnumerator"/> object.</returns>
  1199. </member>
  1200. <member name="T:Microsoft.WindowsAPICodePack.Net.ConnectivityStates">
  1201. <summary>Specifies types of network connectivity.</summary>
  1202. </member>
  1203. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.None">
  1204. <summary>The underlying network interfaces have no connectivity to any network.</summary>
  1205. </member>
  1206. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.IPv4Internet">
  1207. <summary>There is connectivity to the Internet using the IPv4 protocol.</summary>
  1208. </member>
  1209. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.IPv4LocalNetwork">
  1210. <summary>There is connectivity to a routed network using the IPv4 protocol.</summary>
  1211. </member>
  1212. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.IPv4NoTraffic">
  1213. <summary>There is connectivity to a network, but the service cannot detect any IPv4 network traffic.</summary>
  1214. </member>
  1215. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.IPv4Subnet">
  1216. <summary>There is connectivity to the local subnet using the IPv4 protocol.</summary>
  1217. </member>
  1218. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.IPv6Internet">
  1219. <summary>There is connectivity to the Internet using the IPv4 protocol.</summary>
  1220. </member>
  1221. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.IPv6LocalNetwork">
  1222. <summary>There is connectivity to a local network using the IPv6 protocol.</summary>
  1223. </member>
  1224. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.IPv6NoTraffic">
  1225. <summary>There is connectivity to a network, but the service cannot detect any IPv6 network traffic</summary>
  1226. </member>
  1227. <member name="F:Microsoft.WindowsAPICodePack.Net.ConnectivityStates.IPv6Subnet">
  1228. <summary>There is connectivity to the local subnet using the IPv6 protocol.</summary>
  1229. </member>
  1230. <member name="T:Microsoft.WindowsAPICodePack.Net.DomainType">
  1231. <summary>Specifies the domain type of a network.</summary>
  1232. </member>
  1233. <member name="F:Microsoft.WindowsAPICodePack.Net.DomainType.NonDomainNetwork">
  1234. <summary>The network is not an Active Directory network.</summary>
  1235. </member>
  1236. <member name="F:Microsoft.WindowsAPICodePack.Net.DomainType.DomainNetwork">
  1237. <summary>The network is an Active Directory network, but this machine is not authenticated against it.</summary>
  1238. </member>
  1239. <member name="F:Microsoft.WindowsAPICodePack.Net.DomainType.DomainAuthenticated">
  1240. <summary>The network is an Active Directory network, and this machine is authenticated against it.</summary>
  1241. </member>
  1242. <member name="T:Microsoft.WindowsAPICodePack.Net.NetworkCategory">
  1243. <summary>Specifies the trust level for a network.</summary>
  1244. </member>
  1245. <member name="F:Microsoft.WindowsAPICodePack.Net.NetworkCategory.Public">
  1246. <summary>The network is a public (untrusted) network.</summary>
  1247. </member>
  1248. <member name="F:Microsoft.WindowsAPICodePack.Net.NetworkCategory.Private">
  1249. <summary>The network is a private (trusted) network.</summary>
  1250. </member>
  1251. <member name="F:Microsoft.WindowsAPICodePack.Net.NetworkCategory.Authenticated">
  1252. <summary>The network is authenticated against an Active Directory domain.</summary>
  1253. </member>
  1254. <member name="T:Microsoft.WindowsAPICodePack.Net.NetworkConnectivityLevels">
  1255. <summary>Specifies the level of connectivity for networks returned by the <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkListManager"/> class.</summary>
  1256. </member>
  1257. <member name="F:Microsoft.WindowsAPICodePack.Net.NetworkConnectivityLevels.Connected">
  1258. <summary>Networks that the machine is connected to.</summary>
  1259. </member>
  1260. <member name="F:Microsoft.WindowsAPICodePack.Net.NetworkConnectivityLevels.Disconnected">
  1261. <summary>Networks that the machine is not connected to.</summary>
  1262. </member>
  1263. <member name="F:Microsoft.WindowsAPICodePack.Net.NetworkConnectivityLevels.All">
  1264. <summary>All networks.</summary>
  1265. </member>
  1266. <member name="T:Microsoft.WindowsAPICodePack.Net.NetworkListManager">
  1267. <summary>Provides access to objects that represent networks and network connections.</summary>
  1268. </member>
  1269. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkListManager.Connectivity">
  1270. <summary>Gets the connectivity state of this machine.</summary>
  1271. <value>A <see cref="P:Microsoft.WindowsAPICodePack.Net.NetworkListManager.Connectivity"/> value.</value>
  1272. </member>
  1273. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkListManager.IsConnected">
  1274. <summary>Gets a value that indicates whether this machine has network connectivity.</summary>
  1275. <value>A <see cref="T:System.Boolean"/> value.</value>
  1276. </member>
  1277. <member name="P:Microsoft.WindowsAPICodePack.Net.NetworkListManager.IsConnectedToInternet">
  1278. <summary>Gets a value that indicates whether this machine has Internet connectivity.</summary>
  1279. <value>A <see cref="T:System.Boolean"/> value.</value>
  1280. </member>
  1281. <member name="M:Microsoft.WindowsAPICodePack.Net.NetworkListManager.GetNetwork(System.Guid)">
  1282. <summary>Retrieves the <see cref="T:Microsoft.WindowsAPICodePack.Net.Network"/> identified by the specified network identifier.</summary>
  1283. <param name="networkId">A <see cref="T:System.Guid"/> that specifies the unique identifier for the network.</param>
  1284. <returns>The <see cref="T:Microsoft.WindowsAPICodePack.Net.Network"/> that represents the network identified by the identifier.</returns>
  1285. </member>
  1286. <member name="M:Microsoft.WindowsAPICodePack.Net.NetworkListManager.GetNetworkConnection(System.Guid)">
  1287. <summary>Retrieves the <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkConnection"/> identified by the specified connection identifier.</summary>
  1288. <param name="networkConnectionId">A <see cref="T:System.Guid"/> that specifies the unique identifier for the network connection.</param>
  1289. <returns>The <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkConnection"/> identified by the specified identifier.</returns>
  1290. </member>
  1291. <member name="M:Microsoft.WindowsAPICodePack.Net.NetworkListManager.GetNetworkConnections">
  1292. <summary>Retrieves a collection of <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkConnection"/> objects that represent the connections for this machine.</summary>
  1293. <returns>A <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkConnectionCollection"/> containing the network connections.</returns>
  1294. </member>
  1295. <member name="M:Microsoft.WindowsAPICodePack.Net.NetworkListManager.GetNetworks(Microsoft.WindowsAPICodePack.Net.NetworkConnectivityLevels)">
  1296. <summary>Retrieves a collection of <see cref="T:Microsoft.WindowsAPICodePack.Net.Network"/> objects that represent the networks defined for this machine.</summary>
  1297. <param name="level">
  1298. The <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkConnectivityLevels"/> that specify the connectivity level of the returned <see cref="T:Microsoft.WindowsAPICodePack.Net.Network"/> objects.
  1299. </param>
  1300. <returns>A <see cref="T:Microsoft.WindowsAPICodePack.Net.NetworkCollection"/> of <see cref="T:Microsoft.WindowsAPICodePack.Net.Network"/> objects.</returns>
  1301. </member>
  1302. <member name="T:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey">
  1303. <summary>Defines a unique key for a Shell Property</summary>
  1304. </member>
  1305. <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.FormatId">
  1306. <summary>A unique GUID for the property</summary>
  1307. </member>
  1308. <member name="P:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.PropertyId">
  1309. <summary>Property identifier (PID)</summary>
  1310. </member>
  1311. <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.#ctor(System.Guid,System.Int32)">
  1312. <summary>PropertyKey Constructor</summary>
  1313. <param name="formatId">A unique GUID for the property</param>
  1314. <param name="propertyId">Property identifier (PID)</param>
  1315. </member>
  1316. <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.#ctor(System.String,System.Int32)">
  1317. <summary>PropertyKey Constructor</summary>
  1318. <param name="formatId">A string represenstion of a GUID for the property</param>
  1319. <param name="propertyId">Property identifier (PID)</param>
  1320. </member>
  1321. <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.Equals(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey)">
  1322. <summary>Returns whether this object is equal to another. This is vital for performance of value types.</summary>
  1323. <param name="other">The object to compare against.</param>
  1324. <returns>Equality result.</returns>
  1325. </member>
  1326. <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.GetHashCode">
  1327. <summary>Returns the hash code of the object. This is vital for performance of value types.</summary>
  1328. <returns></returns>
  1329. </member>
  1330. <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.Equals(System.Object)">
  1331. <summary>Returns whether this object is equal to another. This is vital for performance of value types.</summary>
  1332. <param name="obj">The object to compare against.</param>
  1333. <returns>Equality result.</returns>
  1334. </member>
  1335. <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.op_Equality(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey)">
  1336. <summary>Implements the == (equality) operator.</summary>
  1337. <param name="propKey1">First property key to compare.</param>
  1338. <param name="propKey2">Second property key to compare.</param>
  1339. <returns>true if object a equals object b. false otherwise.</returns>
  1340. </member>
  1341. <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.op_Inequality(Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey,Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey)">
  1342. <summary>Implements the != (inequality) operator.</summary>
  1343. <param name="propKey1">First property key to compare</param>
  1344. <param name="propKey2">Second property key to compare.</param>
  1345. <returns>true if object a does not equal object b. false otherwise.</returns>
  1346. </member>
  1347. <member name="M:Microsoft.WindowsAPICodePack.Shell.PropertySystem.PropertyKey.ToString">
  1348. <summary>Override ToString() to provide a user friendly string representation</summary>
  1349. <returns>String representing the property key</returns>
  1350. </member>
  1351. <member name="T:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages">
  1352. <summary>
  1353. A strongly-typed resource class, for looking up localized strings, etc.
  1354. </summary>
  1355. </member>
  1356. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ResourceManager">
  1357. <summary>
  1358. Returns the cached ResourceManager instance used by this class.
  1359. </summary>
  1360. </member>
  1361. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.Culture">
  1362. <summary>
  1363. Overrides the current thread's CurrentUICulture property for all
  1364. resource lookups using this strongly typed resource class.
  1365. </summary>
  1366. </member>
  1367. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ApplicationRecoverFailedToRegisterForRestartBadParameters">
  1368. <summary>
  1369. Looks up a localized string similar to Failed to register application for restart due to bad parameters..
  1370. </summary>
  1371. </member>
  1372. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ApplicationRecoveryBadParameters">
  1373. <summary>
  1374. Looks up a localized string similar to Application was not registered for recovery due to bad parameters..
  1375. </summary>
  1376. </member>
  1377. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ApplicationRecoveryFailedToRegister">
  1378. <summary>
  1379. Looks up a localized string similar to Application failed to register for recovery..
  1380. </summary>
  1381. </member>
  1382. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ApplicationRecoveryFailedToRegisterForRestart">
  1383. <summary>
  1384. Looks up a localized string similar to Application failed to registered for restart..
  1385. </summary>
  1386. </member>
  1387. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ApplicationRecoveryFailedToUnregister">
  1388. <summary>
  1389. Looks up a localized string similar to Unregister for recovery failed..
  1390. </summary>
  1391. </member>
  1392. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ApplicationRecoveryFailedToUnregisterForRestart">
  1393. <summary>
  1394. Looks up a localized string similar to Unregister for restart failed..
  1395. </summary>
  1396. </member>
  1397. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ApplicationRecoveryMustBeCalledFromCallback">
  1398. <summary>
  1399. Looks up a localized string similar to This method must be called from the registered callback method..
  1400. </summary>
  1401. </member>
  1402. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.BatteryStateStringRepresentation">
  1403. <summary>
  1404. Looks up a localized string similar to ACOnline: {1}{0}Max Charge: {2} mWh{0}Current Charge: {3} mWh{0}Discharge Rate: {4} mWh{0}Estimated Time Remaining: {5}{0}Suggested Critical Battery Charge: {6} mWh{0}Suggested Battery Warning Charge: {7} mWh{0}.
  1405. </summary>
  1406. </member>
  1407. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.CancelableCannotBeChanged">
  1408. <summary>
  1409. Looks up a localized string similar to Cancelable cannot be changed while dialog is showing..
  1410. </summary>
  1411. </member>
  1412. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.CaptionCannotBeChanged">
  1413. <summary>
  1414. Looks up a localized string similar to Dialog caption cannot be changed while dialog is showing..
  1415. </summary>
  1416. </member>
  1417. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.CheckBoxCannotBeChanged">
  1418. <summary>
  1419. Looks up a localized string similar to CheckBox text cannot be changed while dialog is showing..
  1420. </summary>
  1421. </member>
  1422. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.CollapsedTextCannotBeChanged">
  1423. <summary>
  1424. Looks up a localized string similar to Collapsed control text cannot be changed while dialog is showing..
  1425. </summary>
  1426. </member>
  1427. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.CoreHelpersRunningOn7">
  1428. <summary>
  1429. Looks up a localized string similar to Only supported on Windows 7 or newer..
  1430. </summary>
  1431. </member>
  1432. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.CoreHelpersRunningOnVista">
  1433. <summary>
  1434. Looks up a localized string similar to Only supported on Windows Vista or newer..
  1435. </summary>
  1436. </member>
  1437. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.CoreHelpersRunningOnXp">
  1438. <summary>
  1439. Looks up a localized string similar to Only supported on Windows XP or newer..
  1440. </summary>
  1441. </member>
  1442. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DefaultButtonCannotBeChanged">
  1443. <summary>
  1444. Looks up a localized string similar to Default Button cannot be changed while dialog is showing..
  1445. </summary>
  1446. </member>
  1447. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogCollectionCannotHaveDuplicateNames">
  1448. <summary>
  1449. Looks up a localized string similar to Dialog cannot have more than one control with the same name..
  1450. </summary>
  1451. </member>
  1452. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogCollectionControlAlreadyHosted">
  1453. <summary>
  1454. Looks up a localized string similar to Dialog control must be removed from current collections first..
  1455. </summary>
  1456. </member>
  1457. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogCollectionControlNameNull">
  1458. <summary>
  1459. Looks up a localized string similar to Control name cannot be null or zero length..
  1460. </summary>
  1461. </member>
  1462. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogCollectionModifyShowingDialog">
  1463. <summary>
  1464. Looks up a localized string similar to Modifying controls collection while dialog is showing is not supported..
  1465. </summary>
  1466. </member>
  1467. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogControlNameCannotBeEmpty">
  1468. <summary>
  1469. Looks up a localized string similar to Dialog control name cannot be empty or null..
  1470. </summary>
  1471. </member>
  1472. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogControlsCannotBeRenamed">
  1473. <summary>
  1474. Looks up a localized string similar to Dialog controls cannot be renamed..
  1475. </summary>
  1476. </member>
  1477. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogDefaultCaption">
  1478. <summary>
  1479. Looks up a localized string similar to Application.
  1480. </summary>
  1481. </member>
  1482. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogDefaultContent">
  1483. <summary>
  1484. Looks up a localized string similar to .
  1485. </summary>
  1486. </member>
  1487. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.DialogDefaultMainInstruction">
  1488. <summary>
  1489. Looks up a localized string similar to .
  1490. </summary>
  1491. </member>
  1492. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ExpandedDetailsCannotBeChanged">
  1493. <summary>
  1494. Looks up a localized string similar to Expanded information mode cannot be changed while dialog is showing..
  1495. </summary>
  1496. </member>
  1497. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ExpandedLabelCannotBeChanged">
  1498. <summary>
  1499. Looks up a localized string similar to Expanded control label cannot be changed while dialog is showing..
  1500. </summary>
  1501. </member>
  1502. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ExpandingStateCannotBeChanged">
  1503. <summary>
  1504. Looks up a localized string similar to Expanding state of the dialog cannot be changed while dialog is showing..
  1505. </summary>
  1506. </member>
  1507. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.HyperlinksCannotBetSet">
  1508. <summary>
  1509. Looks up a localized string similar to Hyperlinks cannot be enabled/disabled while dialog is showing..
  1510. </summary>
  1511. </member>
  1512. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.InvalidReferencePath">
  1513. <summary>
  1514. Looks up a localized string similar to Reference path is invalid..
  1515. </summary>
  1516. </member>
  1517. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.MessageManagerHandlerNotRegistered">
  1518. <summary>
  1519. Looks up a localized string similar to The specified event handler has not been registered..
  1520. </summary>
  1521. </member>
  1522. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.NativeTaskDialogConfigurationError">
  1523. <summary>
  1524. Looks up a localized string similar to An error has occurred in dialog configuration..
  1525. </summary>
  1526. </member>
  1527. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.NativeTaskDialogInternalErrorArgs">
  1528. <summary>
  1529. Looks up a localized string similar to Invalid arguments to Win32 call..
  1530. </summary>
  1531. </member>
  1532. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.NativeTaskDialogInternalErrorComplex">
  1533. <summary>
  1534. Looks up a localized string similar to Dialog contents too complex..
  1535. </summary>
  1536. </member>
  1537. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.NativeTaskDialogInternalErrorUnexpected">
  1538. <summary>
  1539. Looks up a localized string similar to An unexpected internal error occurred in the Win32 call: {0:x}.
  1540. </summary>
  1541. </member>
  1542. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.NativeTaskDialogVersionError">
  1543. <summary>
  1544. Looks up a localized string similar to TaskDialog feature needs to load version 6 of comctl32.dll but a different version is current loaded in memory..
  1545. </summary>
  1546. </member>
  1547. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.OwnerCannotBeChanged">
  1548. <summary>
  1549. Looks up a localized string similar to Dialog owner cannot be changed while dialog is showing..
  1550. </summary>
  1551. </member>
  1552. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PowerExecutionStateFailed">
  1553. <summary>
  1554. Looks up a localized string similar to SetThreadExecutionState call failed..
  1555. </summary>
  1556. </member>
  1557. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PowerInsufficientAccessBatteryState">
  1558. <summary>
  1559. Looks up a localized string similar to The caller had insufficient access rights to get the system battery state..
  1560. </summary>
  1561. </member>
  1562. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PowerInsufficientAccessCapabilities">
  1563. <summary>
  1564. Looks up a localized string similar to The caller had insufficient access rights to get the system power capabilities..
  1565. </summary>
  1566. </member>
  1567. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PowerManagerActiveSchemeFailed">
  1568. <summary>
  1569. Looks up a localized string similar to Failed to get active power scheme..
  1570. </summary>
  1571. </member>
  1572. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PowerManagerBatteryNotPresent">
  1573. <summary>
  1574. Looks up a localized string similar to Battery is not present on this system..
  1575. </summary>
  1576. </member>
  1577. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ProgressBarCannotBeChanged">
  1578. <summary>
  1579. Looks up a localized string similar to Progress bar cannot be changed while dialog is showing..
  1580. </summary>
  1581. </member>
  1582. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.ProgressBarCannotBeHostedInMultipleDialogs">
  1583. <summary>
  1584. Looks up a localized string similar to Progress bar cannot be hosted in multiple dialogs..
  1585. </summary>
  1586. </member>
  1587. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PropertyKeyFormatString">
  1588. <summary>
  1589. Looks up a localized string similar to {0}, {1}.
  1590. </summary>
  1591. </member>
  1592. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PropVariantInitializationError">
  1593. <summary>
  1594. Looks up a localized string similar to Unable to initialize PropVariant..
  1595. </summary>
  1596. </member>
  1597. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PropVariantMultiDimArray">
  1598. <summary>
  1599. Looks up a localized string similar to Multi-dimensional SafeArrays not supported..
  1600. </summary>
  1601. </member>
  1602. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PropVariantNullString">
  1603. <summary>
  1604. Looks up a localized string similar to String argument cannot be null or empty..
  1605. </summary>
  1606. </member>
  1607. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PropVariantTypeNotSupported">
  1608. <summary>
  1609. Looks up a localized string similar to This Value type is not supported..
  1610. </summary>
  1611. </member>
  1612. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.PropVariantUnsupportedType">
  1613. <summary>
  1614. Looks up a localized string similar to Cannot be cast to unsupported type..
  1615. </summary>
  1616. </member>
  1617. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.RecoverySettingsFormatString">
  1618. <summary>
  1619. Looks up a localized string similar to delegate: {0}, state: {1}, ping: {2}.
  1620. </summary>
  1621. </member>
  1622. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.RestartSettingsFormatString">
  1623. <summary>
  1624. Looks up a localized string similar to command: {0} restrictions: {1}.
  1625. </summary>
  1626. </member>
  1627. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.StandardButtonsCannotBeChanged">
  1628. <summary>
  1629. Looks up a localized string similar to StandardButtons cannot be changed while dialog is showing..
  1630. </summary>
  1631. </member>
  1632. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.StartupLocationCannotBeChanged">
  1633. <summary>
  1634. Looks up a localized string similar to Startup location cannot be changed while dialog is showing..
  1635. </summary>
  1636. </member>
  1637. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogBadButtonId">
  1638. <summary>
  1639. Looks up a localized string similar to Bad button ID in closing event..
  1640. </summary>
  1641. </member>
  1642. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogButtonTextEmpty">
  1643. <summary>
  1644. Looks up a localized string similar to Button text must be non-empty..
  1645. </summary>
  1646. </member>
  1647. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogCheckBoxTextRequiredToEnableCheckBox">
  1648. <summary>
  1649. Looks up a localized string similar to Check box text must be provided to enable the dialog check box..
  1650. </summary>
  1651. </member>
  1652. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogCloseNonShowing">
  1653. <summary>
  1654. Looks up a localized string similar to Attempting to close a non-showing dialog..
  1655. </summary>
  1656. </member>
  1657. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogDefaultCaption">
  1658. <summary>
  1659. Looks up a localized string similar to Application.
  1660. </summary>
  1661. </member>
  1662. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogDefaultContent">
  1663. <summary>
  1664. Looks up a localized string similar to .
  1665. </summary>
  1666. </member>
  1667. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogDefaultMainInstruction">
  1668. <summary>
  1669. Looks up a localized string similar to .
  1670. </summary>
  1671. </member>
  1672. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogOnlyOneDefaultControl">
  1673. <summary>
  1674. Looks up a localized string similar to Cannot have more than one default button of a given type..
  1675. </summary>
  1676. </member>
  1677. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogProgressBarMaxValueGreaterThanMin">
  1678. <summary>
  1679. Looks up a localized string similar to Maximum value provided must be greater than the minimum value..
  1680. </summary>
  1681. </member>
  1682. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogProgressBarMinValueGreaterThanZero">
  1683. <summary>
  1684. Looks up a localized string similar to Minimum value provided must be a positive number..
  1685. </summary>
  1686. </member>
  1687. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogProgressBarMinValueLessThanMax">
  1688. <summary>
  1689. Looks up a localized string similar to Minimum value provided must less than the maximum value..
  1690. </summary>
  1691. </member>
  1692. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogProgressBarValueInRange">
  1693. <summary>
  1694. Looks up a localized string similar to Value provided must be greater than equal to the minimum value and less than the maximum value..
  1695. </summary>
  1696. </member>
  1697. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogSupportedButtonsAndButtons">
  1698. <summary>
  1699. Looks up a localized string similar to Dialog cannot display both non-standard buttons and standard buttons..
  1700. </summary>
  1701. </member>
  1702. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogSupportedButtonsAndLinks">
  1703. <summary>
  1704. Looks up a localized string similar to Dialog cannot display both non-standard buttons and command links..
  1705. </summary>
  1706. </member>
  1707. <member name="P:Microsoft.WindowsAPICodePack.Resources.LocalizedMessages.TaskDialogUnkownControl">
  1708. <summary>
  1709. Looks up a localized string similar to Unknown dialog control type..
  1710. </summary>
  1711. </member>
  1712. <member name="T:MS.WindowsAPICodePack.Internal.HResult">
  1713. <summary>HRESULT Wrapper</summary>
  1714. </member>
  1715. <member name="F:MS.WindowsAPICodePack.Internal.HResult.Ok">
  1716. <summary>S_OK</summary>
  1717. </member>
  1718. <member name="F:MS.WindowsAPICodePack.Internal.HResult.False">
  1719. <summary>S_FALSE</summary>
  1720. </member>
  1721. <member name="F:MS.WindowsAPICodePack.Internal.HResult.InvalidArguments">
  1722. <summary>E_INVALIDARG</summary>
  1723. </member>
  1724. <member name="F:MS.WindowsAPICodePack.Internal.HResult.OutOfMemory">
  1725. <summary>E_OUTOFMEMORY</summary>
  1726. </member>
  1727. <member name="F:MS.WindowsAPICodePack.Internal.HResult.NoInterface">
  1728. <summary>E_NOINTERFACE</summary>
  1729. </member>
  1730. <member name="F:MS.WindowsAPICodePack.Internal.HResult.Fail">
  1731. <summary>E_FAIL</summary>
  1732. </member>
  1733. <member name="F:MS.WindowsAPICodePack.Internal.HResult.ElementNotFound">
  1734. <summary>E_ELEMENTNOTFOUND</summary>
  1735. </member>
  1736. <member name="F:MS.WindowsAPICodePack.Internal.HResult.TypeElementNotFound">
  1737. <summary>TYPE_E_ELEMENTNOTFOUND</summary>
  1738. </member>
  1739. <member name="F:MS.WindowsAPICodePack.Internal.HResult.NoObject">
  1740. <summary>NO_OBJECT</summary>
  1741. </member>
  1742. <member name="F:MS.WindowsAPICodePack.Internal.HResult.Win32ErrorCanceled">
  1743. <summary>Win32 Error code: ERROR_CANCELLED</summary>
  1744. </member>
  1745. <member name="F:MS.WindowsAPICodePack.Internal.HResult.Canceled">
  1746. <summary>ERROR_CANCELLED</summary>
  1747. </member>
  1748. <member name="F:MS.WindowsAPICodePack.Internal.HResult.ResourceInUse">
  1749. <summary>The requested resource is in use</summary>
  1750. </member>
  1751. <member name="F:MS.WindowsAPICodePack.Internal.HResult.AccessDenied">
  1752. <summary>The requested resources is read-only.</summary>
  1753. </member>
  1754. <member name="T:MS.WindowsAPICodePack.Internal.CoreErrorHelper">
  1755. <summary>Provide Error Message Helper Methods. This is intended for Library Internal use only.</summary>
  1756. </member>
  1757. <member name="F:MS.WindowsAPICodePack.Internal.CoreErrorHelper.Ignored">
  1758. <summary>This is intended for Library Internal use only.</summary>
  1759. </member>
  1760. <member name="F:MS.WindowsAPICodePack.Internal.CoreErrorHelper.FacilityWin32">
  1761. <summary>This is intended for Library Internal use only.</summary>
  1762. </member>
  1763. <member name="M:MS.WindowsAPICodePack.Internal.CoreErrorHelper.Failed(MS.WindowsAPICodePack.Internal.HResult)">
  1764. <summary>This is intended for Library Internal use only.</summary>
  1765. <param name="result">The error code.</param>
  1766. <returns>True if the error code indicates failure.</returns>
  1767. </member>
  1768. <member name="M:MS.WindowsAPICodePack.Internal.CoreErrorHelper.Failed(System.Int32)">
  1769. <summary>This is intended for Library Internal use only.</summary>
  1770. <param name="result">The error code.</param>
  1771. <returns>True if the error code indicates failure.</returns>
  1772. </member>
  1773. <member name="M:MS.WindowsAPICodePack.Internal.CoreErrorHelper.HResultFromWin32(System.Int32)">
  1774. <summary>This is intended for Library Internal use only.</summary>
  1775. <param name="win32ErrorCode">The Windows API error code.</param>
  1776. <returns>The equivalent HRESULT.</returns>
  1777. </member>
  1778. <member name="M:MS.WindowsAPICodePack.Internal.CoreErrorHelper.Matches(System.Int32,System.Int32)">
  1779. <summary>This is intended for Library Internal use only.</summary>
  1780. <param name="result">The COM error code.</param>
  1781. <param name="win32ErrorCode">The Win32 error code.</param>
  1782. <returns>Inticates that the Win32 error code corresponds to the COM error code.</returns>
  1783. </member>
  1784. <member name="M:MS.WindowsAPICodePack.Internal.CoreErrorHelper.Succeeded(System.Int32)">
  1785. <summary>This is intended for Library Internal use only.</summary>
  1786. <param name="result">The error code.</param>
  1787. <returns>True if the error code indicates success.</returns>
  1788. </member>
  1789. <member name="M:MS.WindowsAPICodePack.Internal.CoreErrorHelper.Succeeded(MS.WindowsAPICodePack.Internal.HResult)">
  1790. <summary>This is intended for Library Internal use only.</summary>
  1791. <param name="result">The error code.</param>
  1792. <returns>True if the error code indicates success.</returns>
  1793. </member>
  1794. <member name="T:MS.WindowsAPICodePack.Internal.CoreHelpers">
  1795. <summary>Common Helper methods</summary>
  1796. </member>
  1797. <member name="P:MS.WindowsAPICodePack.Internal.CoreHelpers.RunningOnVista">
  1798. <summary>Determines if the application is running on Vista</summary>
  1799. </member>
  1800. <member name="P:MS.WindowsAPICodePack.Internal.CoreHelpers.RunningOnWin7">
  1801. <summary>Determines if the application is running on Windows 7</summary>
  1802. </member>
  1803. <member name="P:MS.WindowsAPICodePack.Internal.CoreHelpers.RunningOnXP">
  1804. <summary>Determines if the application is running on XP</summary>
  1805. </member>
  1806. <member name="M:MS.WindowsAPICodePack.Internal.CoreHelpers.GetStringResource(System.String)">
  1807. <summary>Get a string resource given a resource Id</summary>
  1808. <param name="resourceId">The resource Id</param>
  1809. <returns>
  1810. The string resource corresponding to the given resource Id. Returns null if the resource id is invalid or the string cannot be
  1811. retrieved for any other reason.
  1812. </returns>
  1813. </member>
  1814. <member name="M:MS.WindowsAPICodePack.Internal.CoreHelpers.ThrowIfNotVista">
  1815. <summary>Throws PlatformNotSupportedException if the application is not running on Windows Vista</summary>
  1816. </member>
  1817. <member name="M:MS.WindowsAPICodePack.Internal.CoreHelpers.ThrowIfNotWin7">
  1818. <summary>Throws PlatformNotSupportedException if the application is not running on Windows 7</summary>
  1819. </member>
  1820. <member name="M:MS.WindowsAPICodePack.Internal.CoreHelpers.ThrowIfNotXP">
  1821. <summary>Throws PlatformNotSupportedException if the application is not running on Windows XP</summary>
  1822. </member>
  1823. <member name="T:MS.WindowsAPICodePack.Internal.CoreNativeMethods">
  1824. <summary>Wrappers for Native Methods and Structs. This type is intended for internal use only</summary>
  1825. </member>
  1826. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.GetHiWord(System.Int64,System.Int32)">
  1827. <summary>Gets the HiWord</summary>
  1828. <param name="value">The value to get the hi word from.</param>
  1829. <param name="size">Size</param>
  1830. <returns>The upper half of the dword.</returns>
  1831. </member>
  1832. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.GetLoWord(System.Int64)">
  1833. <summary>Gets the LoWord</summary>
  1834. <param name="value">The value to get the low word from.</param>
  1835. <returns>The lower half of the dword.</returns>
  1836. </member>
  1837. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.PostMessage(System.IntPtr,MS.WindowsAPICodePack.Internal.WindowMessage,System.IntPtr,System.IntPtr)">
  1838. <summary>
  1839. Places (posts) a message in the message queue associated with the thread that created the specified window and returns without
  1840. waiting for the thread to process the message.
  1841. </summary>
  1842. <param name="windowHandle">
  1843. Handle to the window whose window procedure will receive the message. If this parameter is HWND_BROADCAST, the message is sent to
  1844. all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows; but
  1845. the message is not sent to child windows.
  1846. </param>
  1847. <param name="message">Specifies the message to be sent.</param>
  1848. <param name="wparam">Specifies additional message-specific information.</param>
  1849. <param name="lparam">Specifies additional message-specific information.</param>
  1850. <returns>A return code specific to the message being sent.</returns>
  1851. </member>
  1852. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.SendMessage(System.IntPtr,MS.WindowsAPICodePack.Internal.WindowMessage,System.IntPtr,System.IntPtr)">
  1853. <summary>
  1854. Sends the specified message to a window or windows. The SendMessage function calls the window procedure for the specified window
  1855. and does not return until the window procedure has processed the message.
  1856. </summary>
  1857. <param name="windowHandle">
  1858. Handle to the window whose window procedure will receive the message. If this parameter is HWND_BROADCAST, the message is sent to
  1859. all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows; but
  1860. the message is not sent to child windows.
  1861. </param>
  1862. <param name="message">Specifies the message to be sent.</param>
  1863. <param name="wparam">Specifies additional message-specific information.</param>
  1864. <param name="lparam">Specifies additional message-specific information.</param>
  1865. <returns>A return code specific to the message being sent.</returns>
  1866. </member>
  1867. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.SendMessage(System.IntPtr,System.UInt32,System.IntPtr,System.IntPtr)">
  1868. <summary>
  1869. Sends the specified message to a window or windows. The SendMessage function calls the window procedure for the specified window
  1870. and does not return until the window procedure has processed the message.
  1871. </summary>
  1872. <param name="windowHandle">
  1873. Handle to the window whose window procedure will receive the message. If this parameter is HWND_BROADCAST, the message is sent to
  1874. all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows; but
  1875. the message is not sent to child windows.
  1876. </param>
  1877. <param name="message">Specifies the message to be sent.</param>
  1878. <param name="wparam">Specifies additional message-specific information.</param>
  1879. <param name="lparam">Specifies additional message-specific information.</param>
  1880. <returns>A return code specific to the message being sent.</returns>
  1881. </member>
  1882. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.SendMessage(System.IntPtr,System.UInt32,System.IntPtr,System.String)">
  1883. <summary>
  1884. Sends the specified message to a window or windows. The SendMessage function calls the window procedure for the specified window
  1885. and does not return until the window procedure has processed the message.
  1886. </summary>
  1887. <param name="windowHandle">
  1888. Handle to the window whose window procedure will receive the message. If this parameter is HWND_BROADCAST, the message is sent to
  1889. all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows; but
  1890. the message is not sent to child windows.
  1891. </param>
  1892. <param name="message">Specifies the message to be sent.</param>
  1893. <param name="wparam">Specifies additional message-specific information.</param>
  1894. <param name="lparam">Specifies additional message-specific information.</param>
  1895. <returns>A return code specific to the message being sent.</returns>
  1896. </member>
  1897. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.SendMessage(System.IntPtr,System.UInt32,System.Int32,System.String)">
  1898. <summary>
  1899. Sends the specified message to a window or windows. The SendMessage function calls the window procedure for the specified window
  1900. and does not return until the window procedure has processed the message.
  1901. </summary>
  1902. <param name="windowHandle">
  1903. Handle to the window whose window procedure will receive the message. If this parameter is HWND_BROADCAST, the message is sent to
  1904. all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows; but
  1905. the message is not sent to child windows.
  1906. </param>
  1907. <param name="message">Specifies the message to be sent.</param>
  1908. <param name="wparam">Specifies additional message-specific information.</param>
  1909. <param name="lparam">Specifies additional message-specific information.</param>
  1910. <returns>A return code specific to the message being sent.</returns>
  1911. </member>
  1912. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.SendMessage(System.IntPtr,System.UInt32,System.Int32@,System.Text.StringBuilder)">
  1913. <summary>
  1914. Sends the specified message to a window or windows. The SendMessage function calls the window procedure for the specified window
  1915. and does not return until the window procedure has processed the message.
  1916. </summary>
  1917. <param name="windowHandle">
  1918. Handle to the window whose window procedure will receive the message. If this parameter is HWND_BROADCAST, the message is sent to
  1919. all top-level windows in the system, including disabled or invisible unowned windows, overlapped windows, and pop-up windows; but
  1920. the message is not sent to child windows.
  1921. </param>
  1922. <param name="message">Specifies the message to be sent.</param>
  1923. <param name="wparam">Specifies additional message-specific information.</param>
  1924. <param name="lparam">Specifies additional message-specific information.</param>
  1925. <returns>A return code specific to the message being sent.</returns>
  1926. </member>
  1927. <member name="M:MS.WindowsAPICodePack.Internal.CoreNativeMethods.DestroyIcon(System.IntPtr)">
  1928. <summary>Destroys an icon and frees any memory the icon occupied.</summary>
  1929. <param name="hIcon">Handle to the icon to be destroyed. The icon must not be in use.</param>
  1930. <returns>
  1931. If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error
  1932. information, call GetLastError.
  1933. </returns>
  1934. </member>
  1935. <member name="T:MS.WindowsAPICodePack.Internal.CoreNativeMethods.Size">
  1936. <summary>A Wrapper for a SIZE struct</summary>
  1937. </member>
  1938. <member name="P:MS.WindowsAPICodePack.Internal.CoreNativeMethods.Size.Width">
  1939. <summary>Width</summary>
  1940. </member>
  1941. <member name="P:MS.WindowsAPICodePack.Internal.CoreNativeMethods.Size.Height">
  1942. <summary>Height</summary>
  1943. </member>
  1944. <member name="T:MS.WindowsAPICodePack.Internal.PropVariant">
  1945. <summary>Represents the OLE struct PROPVARIANT. This class is intended for internal use only.</summary>
  1946. <remarks>
  1947. Originally sourced from http://blogs.msdn.com/adamroot/pages/interop-with-propvariants-in-net.aspx and modified to support additional
  1948. types including vectors and ability to set values
  1949. </remarks>
  1950. </member>
  1951. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.FromObject(System.Object)">
  1952. <summary>Attempts to create a PropVariant by finding an appropriate constructor.</summary>
  1953. <param name="value">Object from which PropVariant should be created.</param>
  1954. </member>
  1955. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor">
  1956. <summary>Default constrcutor</summary>
  1957. </member>
  1958. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.String)">
  1959. <summary>Set a string value</summary>
  1960. </member>
  1961. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.String[])">
  1962. <summary>Set a string vector</summary>
  1963. </member>
  1964. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Boolean[])">
  1965. <summary>Set a bool vector</summary>
  1966. </member>
  1967. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Int16[])">
  1968. <summary>Set a short vector</summary>
  1969. </member>
  1970. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.UInt16[])">
  1971. <summary>Set a short vector</summary>
  1972. </member>
  1973. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Int32[])">
  1974. <summary>Set an int vector</summary>
  1975. </member>
  1976. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.UInt32[])">
  1977. <summary>Set an uint vector</summary>
  1978. </member>
  1979. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Int64[])">
  1980. <summary>Set a long vector</summary>
  1981. </member>
  1982. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.UInt64[])">
  1983. <summary>Set a ulong vector</summary>
  1984. </member>
  1985. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Double[])">
  1986. <summary>&gt; Set a double vector</summary>
  1987. </member>
  1988. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.DateTime[])">
  1989. <summary>Set a DateTime vector</summary>
  1990. </member>
  1991. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Boolean)">
  1992. <summary>Set a bool value</summary>
  1993. </member>
  1994. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.DateTime)">
  1995. <summary>Set a DateTime value</summary>
  1996. </member>
  1997. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Byte)">
  1998. <summary>Set a byte value</summary>
  1999. </member>
  2000. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.SByte)">
  2001. <summary>Set a sbyte value</summary>
  2002. </member>
  2003. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Int16)">
  2004. <summary>Set a short value</summary>
  2005. </member>
  2006. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.UInt16)">
  2007. <summary>Set an unsigned short value</summary>
  2008. </member>
  2009. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Int32)">
  2010. <summary>Set an int value</summary>
  2011. </member>
  2012. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.UInt32)">
  2013. <summary>Set an unsigned int value</summary>
  2014. </member>
  2015. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Decimal)">
  2016. <summary>Set a decimal value</summary>
  2017. </member>
  2018. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Decimal[])">
  2019. <summary>Create a PropVariant with a contained decimal array.</summary>
  2020. <param name="value">Decimal array to wrap.</param>
  2021. </member>
  2022. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Single)">
  2023. <summary>Create a PropVariant containing a float type.</summary>
  2024. </member>
  2025. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Single[])">
  2026. <summary>Creates a PropVariant containing a float[] array.</summary>
  2027. </member>
  2028. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Int64)">
  2029. <summary>Set a long</summary>
  2030. </member>
  2031. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.UInt64)">
  2032. <summary>Set a ulong</summary>
  2033. </member>
  2034. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.#ctor(System.Double)">
  2035. <summary>Set a double</summary>
  2036. </member>
  2037. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.SetIUnknown(System.Object)">
  2038. <summary>Set an IUnknown value</summary>
  2039. <param name="value">The new value to set.</param>
  2040. </member>
  2041. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.SetSafeArray(System.Array)">
  2042. <summary>Set a safe array value</summary>
  2043. <param name="array">The new value to set.</param>
  2044. </member>
  2045. <member name="P:MS.WindowsAPICodePack.Internal.PropVariant.VarType">
  2046. <summary>Gets or sets the variant type.</summary>
  2047. </member>
  2048. <member name="P:MS.WindowsAPICodePack.Internal.PropVariant.IsNullOrEmpty">
  2049. <summary>Checks if this has an empty or null value</summary>
  2050. <returns></returns>
  2051. </member>
  2052. <member name="P:MS.WindowsAPICodePack.Internal.PropVariant.Value">
  2053. <summary>Gets the variant value.</summary>
  2054. </member>
  2055. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.Dispose">
  2056. <summary>Disposes the object, calls the clear function.</summary>
  2057. </member>
  2058. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.Finalize">
  2059. <summary>Finalizer</summary>
  2060. </member>
  2061. <member name="M:MS.WindowsAPICodePack.Internal.PropVariant.ToString">
  2062. <summary>Provides an simple string representation of the contained data and type.</summary>
  2063. <returns></returns>
  2064. </member>
  2065. <member name="T:MS.WindowsAPICodePack.Internal.SafeIconHandle">
  2066. <summary>Safe Icon Handle</summary>
  2067. </member>
  2068. <member name="M:MS.WindowsAPICodePack.Internal.SafeIconHandle.ReleaseHandle">
  2069. <summary>Release the handle</summary>
  2070. <returns>true if handled is release successfully, false otherwise</returns>
  2071. </member>
  2072. <member name="T:MS.WindowsAPICodePack.Internal.SafeRegionHandle">
  2073. <summary>Safe Region Handle</summary>
  2074. </member>
  2075. <member name="M:MS.WindowsAPICodePack.Internal.SafeRegionHandle.ReleaseHandle">
  2076. <summary>Release the handle</summary>
  2077. <returns>true if handled is release successfully, false otherwise</returns>
  2078. </member>
  2079. <member name="T:MS.WindowsAPICodePack.Internal.SafeWindowHandle">
  2080. <summary>Safe Window Handle</summary>
  2081. </member>
  2082. <member name="M:MS.WindowsAPICodePack.Internal.SafeWindowHandle.ReleaseHandle">
  2083. <summary>Release the handle</summary>
  2084. <returns>true if handled is release successfully, false otherwise</returns>
  2085. </member>
  2086. <member name="T:MS.WindowsAPICodePack.Internal.ZeroInvalidHandle">
  2087. <summary>Base class for Safe handles with Null IntPtr as invalid</summary>
  2088. </member>
  2089. <member name="M:MS.WindowsAPICodePack.Internal.ZeroInvalidHandle.#ctor">
  2090. <summary>Default constructor</summary>
  2091. </member>
  2092. <member name="P:MS.WindowsAPICodePack.Internal.ZeroInvalidHandle.IsInvalid">
  2093. <summary>Determines if this is a valid handle</summary>
  2094. </member>
  2095. </members>
  2096. </doc>