NAnt.MSNetTasks.xml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>NAnt.MSNetTasks</name>
  5. </assembly>
  6. <members>
  7. <member name="T:NAnt.MSNet.Tasks.IldasmTask">
  8. <summary>
  9. Disassembles any portable executable (PE) file that contains
  10. intermediate language (IL) code.
  11. </summary>
  12. <remarks>
  13. <para>
  14. Files are only disassembled if the input file is newer than the output
  15. file, or if the output file does not exist. However, you can
  16. explicitly force files to be disassembled with the
  17. <see cref="P:NAnt.MSNet.Tasks.IldasmTask.ForceRebuild"/> attribute.
  18. </para>
  19. <para>
  20. A <see cref="T:NAnt.Core.Types.FileSet"/> can be used to select files to disassemble.
  21. To use a <see cref="T:NAnt.Core.Types.FileSet"/>, the <see cref="P:NAnt.MSNet.Tasks.IldasmTask.ToDirectory"/>
  22. attribute must be set. The file name of the output file will be equal
  23. to the file name of the input file, but with extension ".il".
  24. </para>
  25. </remarks>
  26. <example>
  27. <para>
  28. Disassembles <c>helloworld.exe</c> to <c>helloworld.il</c>.
  29. </para>
  30. <code>
  31. <![CDATA[
  32. <ildasm input="helloworld.exe" output="helloworld.il" />
  33. ]]>
  34. </code>
  35. </example>
  36. <example>
  37. <para>
  38. Disassembles a set of PE files into the specified directory.
  39. </para>
  40. <code>
  41. <![CDATA[
  42. <ildasm todir=".">
  43. <assemblies>
  44. <include name="*.exe" />
  45. <include name="*.dll" />
  46. </assemblies>
  47. </ildasm>
  48. ]]>
  49. </code>
  50. </example>
  51. </member>
  52. <member name="M:NAnt.MSNet.Tasks.IldasmTask.InitializeTask(System.Xml.XmlNode)">
  53. <summary>
  54. Checks whether the task is initialized with valid attributes.
  55. </summary>
  56. <param name="taskNode">The <see cref="T:System.Xml.XmlNode"/> used to initialize the task.</param>
  57. </member>
  58. <member name="M:NAnt.MSNet.Tasks.IldasmTask.ExecuteTask">
  59. <summary>
  60. Disassembles the PE file(s).
  61. </summary>
  62. </member>
  63. <member name="M:NAnt.MSNet.Tasks.IldasmTask.DisassemblyFile(System.IO.FileInfo)">
  64. <summary>
  65. Disassembles the specified PE file.
  66. </summary>
  67. <param name="inputFile">The PE file to disassemble.</param>
  68. </member>
  69. <member name="M:NAnt.MSNet.Tasks.IldasmTask.GetOutputFile(System.IO.FileInfo)">
  70. <summary>
  71. Determines the full path and extension for the output file.
  72. </summary>
  73. <param name="inputFile">
  74. A <see cref="T:System.IO.FileInfo"/> that represents the PE file
  75. file for which the corresponding output file should be determined.
  76. </param>
  77. <returns>
  78. A <see cref="T:System.IO.FileInfo"/> that represents the full path
  79. for the output file.
  80. </returns>
  81. <exception cref="T:NAnt.Core.BuildException">The path of the output file could not be determined.</exception>
  82. </member>
  83. <member name="M:NAnt.MSNet.Tasks.IldasmTask.WriteOptions(System.IO.FileInfo,System.IO.FileInfo)">
  84. <summary>
  85. Writes the disassembler options.
  86. </summary>
  87. </member>
  88. <member name="M:NAnt.MSNet.Tasks.IldasmTask.WriteOption(System.IO.StringWriter,System.String)">
  89. <summary>
  90. Writes an option using the default output format.
  91. </summary>
  92. <param name="writer">
  93. The <see cref="T:System.IO.StringWriter"/> to which the disassembler options
  94. should be written.
  95. </param>
  96. <param name="name">
  97. A <see cref="T:System.String"/> that contains the name of the
  98. option which should be passed to the disassembler.
  99. </param>
  100. </member>
  101. <member name="M:NAnt.MSNet.Tasks.IldasmTask.WriteOption(System.IO.StringWriter,System.String,System.String)">
  102. <summary>
  103. Writes an option and its value using the default output format.
  104. </summary>
  105. <param name="writer">
  106. The <see cref="T:System.IO.StringWriter"/> to which the disassembler options
  107. should be written.
  108. </param>
  109. <param name="name">
  110. A <see cref="T:System.String"/> that contains the name of the
  111. option which should be passed to the disassembler.
  112. </param>
  113. <param name="arg">
  114. A <see cref="T:System.String"/> that contains the value of the
  115. option which should be passed to the disassembler.
  116. </param>
  117. </member>
  118. <member name="M:NAnt.MSNet.Tasks.IldasmTask.NeedsDisassembling(System.IO.FileInfo,System.IO.FileInfo)">
  119. <summary>
  120. Determines whether or not disassembling is needed.
  121. </summary>
  122. <returns>
  123. <see langword="true" /> if disassembling is needed; otherwise,
  124. <see langword="false" />.
  125. </returns>
  126. </member>
  127. <member name="P:NAnt.MSNet.Tasks.IldasmTask.All">
  128. <summary>
  129. Specifies whether or not the disassembler should combine the
  130. <c>/HEADER</c>, <c>/BYTE</c>, and <c>/TOKENS</c> options. The default
  131. is <see langword="false" />.
  132. </summary>
  133. <value>
  134. <see langword="true" /> if the disassembler should combine the
  135. <c>/HEADER</c>, <c>/BYTE</c>, and <c>/TOKENS</c> options;
  136. otherwise, <see langword="false" />. The default is
  137. <see langword="false" />.
  138. </value>
  139. <remarks>
  140. <para>
  141. Corresponds to the <c>/ALL</c> flag.
  142. </para>
  143. </remarks>
  144. </member>
  145. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Bytes">
  146. <summary>
  147. Specifies whether or not the disassembler should generate the
  148. IL stream bytes (in hexadecimal notation) as instruction comments.
  149. The default is <see langword="false" />.
  150. </summary>
  151. <value>
  152. <see langword="true" /> if the IL stream bytes should be generated
  153. as instruction comments; otherwise, <see langword="false" />. The
  154. default is <see langword="false" />.
  155. </value>
  156. <remarks>
  157. <para>
  158. Corresponds to the <c>/BYTE</c> flag.
  159. </para>
  160. </remarks>
  161. </member>
  162. <member name="P:NAnt.MSNet.Tasks.IldasmTask.ForceRebuild">
  163. <summary>
  164. Instructs NAnt to rebuild the output file regardless of the file
  165. timestamps. The default is <see langword="false" />.
  166. </summary>
  167. <value>
  168. <see langword="true" /> if the output file should be rebuilt
  169. regardless of its timestamps; otherwise <see langword="false" />.
  170. The default is <see langword="false" />.
  171. </value>
  172. </member>
  173. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Header">
  174. <summary>
  175. Specifies whether or not the disassembler should include PE header
  176. information and runtime header information in the output. The default
  177. is <see langword="false" />.
  178. </summary>
  179. <value>
  180. <see langword="true" /> if PE header information and runtime header
  181. information should be included in the output; otherwise,
  182. <see langword="false" />. The default is <see langword="false" />.
  183. </value>
  184. <remarks>
  185. <para>
  186. Corresponds to the <c>/HEADER</c> flag.
  187. </para>
  188. </remarks>
  189. </member>
  190. <member name="P:NAnt.MSNet.Tasks.IldasmTask.InputFile">
  191. <summary>
  192. Specifies the PE file to disassemble.
  193. </summary>
  194. <value>
  195. A <see cref="T:System.IO.FileInfo"/> that represents the PE file
  196. to disassemble.
  197. </value>
  198. </member>
  199. <member name="P:NAnt.MSNet.Tasks.IldasmTask.LineNumbers">
  200. <summary>
  201. Specifies whether or not the disassembler should include
  202. references to original source lines. The default is <see langword="false" />.
  203. </summary>
  204. <value>
  205. <see langword="true" /> if references to original source lines
  206. should be included; otherwise, <see langword="false" />. The
  207. default is <see langword="false" />.
  208. </value>
  209. <remarks>
  210. <para>
  211. Corresponds to the <c>/LINENUM</c> flag.
  212. </para>
  213. </remarks>
  214. </member>
  215. <member name="P:NAnt.MSNet.Tasks.IldasmTask.NoIL">
  216. <summary>
  217. Specifies whether or not the disassembler should suppress ILASM
  218. code output. The default is <see langword="false" />.
  219. </summary>
  220. <value>
  221. <see langword="true" /> if ILASM code output should be suppresses;
  222. otherwise, <see langword="false" />. The default is
  223. <see langword="false" />.
  224. </value>
  225. <remarks>
  226. <para>
  227. Corresponds to the <c>/NOIL</c> flag.
  228. </para>
  229. </remarks>
  230. </member>
  231. <member name="P:NAnt.MSNet.Tasks.IldasmTask.PublicOnly">
  232. <summary>
  233. Specifies whether or not the disassembler should disassemble
  234. public items only. This is a shortcut for <see cref="P:NAnt.MSNet.Tasks.IldasmTask.Visibility"/>="pub".
  235. The default is <see langword="false"/>.
  236. </summary>
  237. <value>
  238. <see langword="true"/> if only public items should be
  239. disassembled; otherwise, <see langword="false"/>. The default is
  240. <see langword="false"/>.
  241. </value>
  242. <remarks>
  243. <para>
  244. Corresponds to the <c>/PUBONLY</c> flag.
  245. </para>
  246. </remarks>
  247. </member>
  248. <member name="P:NAnt.MSNet.Tasks.IldasmTask.QuoteAllNames">
  249. <summary>
  250. Specifies whether or not the disassembler should enclose all names
  251. in single quotation marks. By default, only names that don't match
  252. the ILASM definition of a simple name are quoted. The default is
  253. <see langword="false" />.
  254. </summary>
  255. <value>
  256. <see langword="true" /> if all names should be enclosed in single
  257. quotation marks; otherwise, <see langword="false" />. The default
  258. is <see langword="false" />.
  259. </value>
  260. <remarks>
  261. <para>
  262. Corresponds to the <c>/QUOTEALLNAMES</c> flag.
  263. </para>
  264. </remarks>
  265. </member>
  266. <member name="P:NAnt.MSNet.Tasks.IldasmTask.RawExceptionHandling">
  267. <summary>
  268. Specifies whether or not the disassembler should generate
  269. structured exception handling clauses in canonical (label) form.
  270. The default is <see langword="false" />.
  271. </summary>
  272. <value>
  273. <see langword="true" /> if structured exception handling clauses
  274. should be generated in canonical form; otherwise,
  275. <see langword="false" />. The default is <see langword="false" />.
  276. </value>
  277. <remarks>
  278. <para>
  279. Corresponds to the <c>/RAWEH</c> flag.
  280. </para>
  281. </remarks>
  282. </member>
  283. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Source">
  284. <summary>
  285. Specifies whether or not the disassembler should generate
  286. original source lines as comments. The default is <see langword="false" />.
  287. </summary>
  288. <value>
  289. <see langword="true" /> if original source lines should be
  290. generated as comments; otherwise, <see langword="false" />.
  291. The default is <see langword="false" />.
  292. </value>
  293. <remarks>
  294. <para>
  295. Corresponds to the <c>/SOURCE</c> flag.
  296. </para>
  297. </remarks>
  298. </member>
  299. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Tokens">
  300. <summary>
  301. Specifies whether or not the disassembler should generate metadata
  302. token values as comments. The default is <see langword="false" />.
  303. </summary>
  304. <value>
  305. <see langword="true" /> if metadata token values should be
  306. generated as comments; otherwise, <see langword="false" />. The
  307. default is <see langword="false" />.
  308. </value>
  309. <remarks>
  310. <para>
  311. Corresponds to the <c>/TOKENS</c> flag.
  312. </para>
  313. </remarks>
  314. </member>
  315. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Unicode">
  316. <summary>
  317. Specifies whether or not the disassembler should use the UNICODE
  318. encoding when generating the output. The default is ANSI.
  319. </summary>
  320. <value>
  321. <see langword="true" /> if the output should be generated using
  322. the UNICODE encoding; otherwise, <see langword="false" />. The
  323. default is <see langword="false" />.
  324. </value>
  325. <remarks>
  326. <para>
  327. Corresponds to the <c>/UNICODE</c> flag.
  328. </para>
  329. </remarks>
  330. </member>
  331. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Utf8">
  332. <summary>
  333. Specifies whether or not the disassembler should use the UTF-8
  334. encoding when generating the output. The default is ANSI.
  335. </summary>
  336. <value>
  337. <see langword="true" /> if the output should be generated using
  338. the UTF-8 encoding; otherwise, <see langword="false" />. The
  339. default is <see langword="false" />.
  340. </value>
  341. <remarks>
  342. <para>
  343. Corresponds to the <c>/UTF8</c> flag.
  344. </para>
  345. </remarks>
  346. </member>
  347. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Item">
  348. <summary>
  349. Instructs the disassembler to disassemble the specified item only.
  350. </summary>
  351. <value>
  352. A <see cref="T:System.String"/> that specifies the item to
  353. disassemble.
  354. </value>
  355. <remarks>
  356. <para>
  357. Corresponds to the <c>/ITEM</c> flag.
  358. </para>
  359. </remarks>
  360. </member>
  361. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Visibility">
  362. <summary>
  363. Instructs the disassembler to disassemble only the items with the
  364. specified visibility. Possible values are <c>PUB</c>, <c>PRI</c>,
  365. <c>FAM</c>, <c>ASM</c>, <c>FAA</c>, <c>FOA</c>, <c>PSC</c>,
  366. or any combination of them separated by <c>+</c>.
  367. </summary>
  368. <value>
  369. A <see cref="T:System.String"/> that contains the visibility
  370. suboptions.
  371. </value>
  372. <remarks>
  373. <para>
  374. Corresponds to the <c>/VISIBILITY</c> flag.
  375. </para>
  376. </remarks>
  377. </member>
  378. <member name="P:NAnt.MSNet.Tasks.IldasmTask.OutputFile">
  379. <summary>
  380. Specifies the name of the output file created by the disassembler.
  381. </summary>
  382. <value>
  383. A <see cref="T:System.IO.FileInfo"/> that represents the name of
  384. the output file.
  385. </value>
  386. <remarks>
  387. <para>
  388. Corresponds to the <c>/OUT</c> flag.
  389. </para>
  390. </remarks>
  391. </member>
  392. <member name="P:NAnt.MSNet.Tasks.IldasmTask.ToDirectory">
  393. <summary>
  394. Specifies the directory to which outputs will be stored.
  395. </summary>
  396. <value>
  397. A <see cref="T:System.IO.DirectoryInfo"/> that represents the
  398. directory to which outputs will be stored.
  399. </value>
  400. </member>
  401. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Assemblies">
  402. <summary>
  403. Specifies a list of PE files to disassemble. To use a <see cref="T:NAnt.Core.Types.FileSet"/>,
  404. the <see cref="P:NAnt.MSNet.Tasks.IldasmTask.ToDirectory"/> attribute must be specified.
  405. </summary>
  406. <value>
  407. A <see cref="T:NAnt.Core.Types.FileSet"/> that represents the set
  408. of PE files to disassemble.
  409. </value>
  410. </member>
  411. <member name="P:NAnt.MSNet.Tasks.IldasmTask.Arguments">
  412. <summary>
  413. The command-line arguments for the external program.
  414. </summary>
  415. <remarks>
  416. Overridden to ensure the &lt;arg&gt; elements would not be exposed
  417. to build authors.
  418. </remarks>
  419. </member>
  420. <member name="P:NAnt.MSNet.Tasks.IldasmTask.ProgramArguments">
  421. <summary>
  422. Gets the command-line arguments for the external program.
  423. </summary>
  424. <value>
  425. A <see cref="T:System.String"/> that contains the command-line
  426. arguments for the external program.
  427. </value>
  428. </member>
  429. <member name="T:NAnt.MSNet.Tasks.ServiceControllerTask">
  430. <summary>
  431. Allows a Windows service to be controlled.
  432. </summary>
  433. <example>
  434. <para>Starts the World Wide Web Publishing Service on the local computer.</para>
  435. <code>
  436. <![CDATA[
  437. <servicecontroller action="Start" service="w3svc" />
  438. ]]>
  439. </code>
  440. </example>
  441. <example>
  442. <para>Stops the Alerter service on computer 'MOTHER'.</para>
  443. <code>
  444. <![CDATA[
  445. <servicecontroller action="Stop" service="Alerter" machine="MOTHER" />
  446. ]]>
  447. </code>
  448. </example>
  449. </member>
  450. <member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.#ctor">
  451. <summary>
  452. Initializes a new instance of the <see cref="T:NAnt.MSNet.Tasks.ServiceControllerTask"/>
  453. class.
  454. </summary>
  455. </member>
  456. <member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.ExecuteTask">
  457. <summary>
  458. Peforms actions on the service in order to reach the desired status.
  459. </summary>
  460. </member>
  461. <member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.DetermineDesiredStatus">
  462. <summary>
  463. Determines the desired status of the service based on the action
  464. that should be performed on it.
  465. </summary>
  466. <returns>
  467. The <see cref="T:System.ServiceProcess.ServiceControllerStatus"/> that should be reached
  468. in order for the <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.Action"/> to be considered successful.
  469. </returns>
  470. </member>
  471. <member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.StartService(System.ServiceProcess.ServiceController)">
  472. <summary>
  473. Starts the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and
  474. <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.
  475. </summary>
  476. <param name="serviceController"><see cref="T:System.ServiceProcess.ServiceController"/> instance for controlling the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.</param>
  477. </member>
  478. <member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.StopService(System.ServiceProcess.ServiceController)">
  479. <summary>
  480. Stops the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and
  481. <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.
  482. </summary>
  483. <param name="serviceController"><see cref="T:System.ServiceProcess.ServiceController"/> instance for controlling the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.</param>
  484. </member>
  485. <member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.RestartService(System.ServiceProcess.ServiceController)">
  486. <summary>
  487. Restarts the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and
  488. <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.
  489. </summary>
  490. <param name="serviceController"><see cref="T:System.ServiceProcess.ServiceController"/> instance for controlling the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.</param>
  491. </member>
  492. <member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.PauseService(System.ServiceProcess.ServiceController)">
  493. <summary>
  494. Pauses the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and
  495. <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.
  496. </summary>
  497. <param name="serviceController"><see cref="T:System.ServiceProcess.ServiceController"/> instance for controlling the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.</param>
  498. </member>
  499. <member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.ContinueService(System.ServiceProcess.ServiceController)">
  500. <summary>
  501. Continues the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and
  502. <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.
  503. </summary>
  504. <param name="serviceController"><see cref="T:System.ServiceProcess.ServiceController"/> instance for controlling the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.</param>
  505. </member>
  506. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask._serviceName">
  507. <summary>
  508. Holds the name of the service that should be controlled.
  509. </summary>
  510. </member>
  511. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask._machineName">
  512. <summary>
  513. Holds the name of the computer on which the service resides.
  514. </summary>
  515. </member>
  516. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask._action">
  517. <summary>
  518. Holds the action that should be performed on the service.
  519. </summary>
  520. </member>
  521. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask._timeout">
  522. <summary>
  523. Holds the time, in milliseconds, the task will wait for a service
  524. to reach the desired status.
  525. </summary>
  526. </member>
  527. <member name="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName">
  528. <summary>
  529. The name of the service that should be controlled.
  530. </summary>
  531. </member>
  532. <member name="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName">
  533. <summary>
  534. The name of the computer on which the service resides. The default
  535. is the local computer.
  536. </summary>
  537. </member>
  538. <member name="P:NAnt.MSNet.Tasks.ServiceControllerTask.Action">
  539. <summary>
  540. The action that should be performed on the service.
  541. </summary>
  542. </member>
  543. <member name="P:NAnt.MSNet.Tasks.ServiceControllerTask.Timeout">
  544. <summary>
  545. The time, in milliseconds, the task will wait for the service to
  546. reach the desired status. The default is 5000 milliseconds.
  547. </summary>
  548. </member>
  549. <member name="T:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType">
  550. <summary>
  551. Defines the actions that can be performed on a service.
  552. </summary>
  553. </member>
  554. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Start">
  555. <summary>
  556. Starts a service.
  557. </summary>
  558. </member>
  559. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Stop">
  560. <summary>
  561. Stops a service.
  562. </summary>
  563. </member>
  564. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Restart">
  565. <summary>
  566. Restarts a service.
  567. </summary>
  568. </member>
  569. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Pause">
  570. <summary>
  571. Pauses a running service.
  572. </summary>
  573. </member>
  574. <member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Continue">
  575. <summary>
  576. Continues a paused service.
  577. </summary>
  578. </member>
  579. </members>
  580. </doc>