home *** CD-ROM | disk | FTP | other *** search
/ ftp.tcs3.com / ftp.tcs3.com.tar / ftp.tcs3.com / DRIVERS / Audio / Office2010 / InfoPath.en-us / InfLR.cab / FL_System_Deployment_xml_103425_ENU____.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Extensible Markup Language  |  2009-05-23  |  31KB  |  364 lines

  1. ∩╗┐<?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3.     <assembly>
  4.         <name>System.Deployment</name>
  5.     </assembly>
  6.     <members>
  7.         <member name="N:System.Deployment.Application">
  8.             <summary>With the <see cref="N:System.Deployment.Application"></see> namespace, you can program custom upgrade behavior into your ClickOnce application.</summary>
  9.         </member>
  10.         <member name="T:System.Deployment.Application.ApplicationDeployment">
  11.             <summary>Supports updates of the current deployment programmatically, as well as on-demand downloads of files. This class cannot be inherited.</summary>
  12.         </member>
  13.         <member name="E:System.Deployment.Application.ApplicationDeployment.CheckForUpdateCompleted">
  14.             <summary>Occurs when <see cref="M:System.Deployment.Application.ApplicationDeployment.CheckForUpdateAsync"></see> has completed.</summary>
  15.         </member>
  16.         <member name="E:System.Deployment.Application.ApplicationDeployment.CheckForUpdateProgressChanged">
  17.             <summary>Occurs when a progress update is available on a <see cref="M:System.Deployment.Application.ApplicationDeployment.CheckForUpdateAsync"></see> call.</summary>
  18.         </member>
  19.         <member name="E:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupCompleted">
  20.             <summary>Occurs on the main application thread once a file download completes.</summary>
  21.         </member>
  22.         <member name="E:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupProgressChanged">
  23.             <summary>Occurs when status information is available on a file download operation initiated by a call to <see cref="Overload:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupAsync"></see>.</summary>
  24.         </member>
  25.         <member name="E:System.Deployment.Application.ApplicationDeployment.UpdateCompleted">
  26.             <summary>Occurs when ClickOnce has finished upgrading the application as the result of a call to <see cref="M:System.Deployment.Application.ApplicationDeployment.UpdateAsync"></see>.</summary>
  27.         </member>
  28.         <member name="E:System.Deployment.Application.ApplicationDeployment.UpdateProgressChanged">
  29.             <summary>Occurs when ClickOnce has new status information for an update operation initiated by calling <see cref="M:System.Deployment.Application.ApplicationDeployment.UpdateAsync"></see>.</summary>
  30.         </member>
  31.         <member name="M:System.Deployment.Application.ApplicationDeployment.CheckForDetailedUpdate">
  32.             <summary>Performs the same operation as <see cref="M:System.Deployment.ApplicationDeployment.CheckForUpdate"></see>, but returns extended information about the available update.</summary>
  33.             <returns>An <see cref="T:System.Deployment.UpdateCheckInfo"></see> for the available update.</returns>
  34.             <exception cref="T:System.Deployment.ApplicationDeployment.InvalidDeploymentException">The deployment manifest is corrupted. Regenerate the application's manifest before you attempt to deploy this application to users. This exception will appear in the <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Error"></see> property of the <see cref="E:System.Deployment.Application.ApplicationDeployment.CheckForUpdateCompleted"></see> event.</exception>
  35.             <exception cref="T:System.Deployment.Application.DeploymentDownloadException">The deployment manifest cannot be downloaded. This exception will appear in the <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Error"></see> property of the <see cref="E:System.Deployment.Application.ApplicationDeployment.CheckForUpdateCompleted"></see> event.</exception>
  36.             <exception cref="T:System.InvalidOperationException">The current application is either not configured to support updates, or there is another update check operation already in progress.</exception>
  37.         </member>
  38.         <member name="M:System.Deployment.Application.ApplicationDeployment.CheckForUpdate">
  39.             <summary>Checks <see cref="P:System.Deployment.Application.ApplicationDeployment.UpdateLocation"></see> to determine whether a new update is available.</summary>
  40.             <returns>true if a new update is available; otherwise, false.</returns>
  41.             <exception cref="T:System.Deployment.ApplicationDeployment.InvalidDeploymentException">The deployment manifest is corrupted. You will likely need to redeploy the application to fix this problem. This exception will appear in the <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Error"></see> property of the <see cref="E:System.Deployment.Application.ApplicationDeployment.CheckForUpdateCompleted"></see> event.</exception>
  42.             <exception cref="DeploymentDownloadException">The deployment manifest cannot be downloaded. This exception will appear in the <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Error"></see> property of the <see cref="E:System.Deployment.Application.ApplicationDeployment.CheckForUpdateCompleted"></see> event.</exception>
  43.             <exception cref="T:System.InvalidOperationException">
  44.                                                             ClickOnce will throw this exception immediately if you call this method while an update is already in progress.</exception>
  45.         </member>
  46.         <member name="M:System.Deployment.Application.ApplicationDeployment.CheckForUpdateAsync">
  47.             <summary>Checks <see cref="P:System.Deployment.Application.ApplicationDeployment.UpdateLocation"></see> asynchronously to determine whether a new update is available.</summary>
  48.         </member>
  49.         <member name="M:System.Deployment.Application.ApplicationDeployment.CheckForUpdateAsyncCancel">
  50.             <summary>Cancels the asynchronous update check.</summary>
  51.         </member>
  52.         <member name="M:System.Deployment.Application.ApplicationDeployment.DownloadFileGroup(System.String)">
  53.             <summary>Downloads, on-demand, a set of optional files.</summary>
  54.             <param name="groupName">The named group of files to download. All files marked "optional" in a ClickOnce application require a group name.</param>
  55.             <exception cref="T:System.ArgumentNullException">groupName parameter is null or zero-length.</exception>
  56.         </member>
  57.         <member name="M:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupAsync(System.String)">
  58.             <summary>Downloads, on-demand, a set of optional files in the background.</summary>
  59.             <param name="groupName">The named group of files to download. All files marked "optional" in a ClickOnce application require a group name.</param>
  60.             <exception cref="T:System.ArgumentNullException">groupName parameter is null or zero-length.</exception>
  61.             <exception cref="InvalidOperationException">You cannot initiate more than one download of groupName at a time.</exception>
  62.         </member>
  63.         <member name="M:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupAsync(System.String,System.Object)">
  64.             <summary>Downloads, on-demand, a set of optional files in the background, and passes a piece of application state to the event callbacks.</summary>
  65.             <param name="groupName">The named group of files to download. All files marked "optional" in a ClickOnce application require a group name.</param>
  66.             <param name="userState">An arbitrary object containing state information for the asynchronous operation.</param>
  67.             <exception cref="T:System.ArgumentNullException">groupName parameter is null or zero-length.</exception>
  68.             <exception cref="InvalidOperationException">You cannot initiate more than one download of groupName at a time.</exception>
  69.         </member>
  70.         <member name="M:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupAsyncCancel(System.String)">
  71.             <summary>Cancel an asynchronous file download.</summary>
  72.             <param name="groupName">The named group of files to download. All files marked "optional" in a ClickOnce application require a group name.</param>
  73.             <exception cref="T:System.ArgumentNullException">groupName cannot be null.</exception>
  74.         </member>
  75.         <member name="M:System.Deployment.Application.ApplicationDeployment.IsFileGroupDownloaded(System.String)">
  76.             <summary>Checks whether the named file group has already been downloaded to the client computer.</summary>
  77.             <returns>true if the file group has already been downloaded for the current version of this application; otherwise, false. If a new version of the application has been installed, and the new version has not added to, removed from, or altered files in the file group, <see cref="M:System.Deployment.Application.ApplicationDeployment.IsFileGroupDownloaded(System.String)"></see> will return true.</returns>
  78.             <param name="groupName">The named group of files to download. All files marked "optional" in a ClickOnce application require a group name.</param>
  79.             <exception cref="T:System.Deployment.ApplicationDeployment.InvalidDeploymentException">groupName is not a file group defined in the application manifest.</exception>
  80.         </member>
  81.         <member name="M:System.Deployment.Application.ApplicationDeployment.Update">
  82.             <summary>Starts a synchronous download and installation of this application's latest version. </summary>
  83.             <returns>true if an application has been updated; otherwise, false.</returns>
  84.             <exception cref="T:System.Deployment.Application.DeploymentDownloadException">The new deployment could not be downloaded from its location on the network.</exception>
  85.             <exception cref="T:System.Deployment.Application.InvalidDeploymentException">Your ClickOnce deployment is corrupted. For tips on how to diagnose and correct the problem, see Troubleshooting ClickOnce Deployments.</exception>
  86.             <exception cref="T:System.Deployment.Application.TrustNotGrantedException">The local computer did not grant this application the permission level it requested to execute.</exception>
  87.         </member>
  88.         <member name="M:System.Deployment.Application.ApplicationDeployment.UpdateAsync">
  89.             <summary>Starts an asynchronous download and installation of this application's latest version.</summary>
  90.             <exception cref="T:System.Deployment.Application.DeploymentDownloadException">The new deployment could not be downloaded from its location on the network.</exception>
  91.             <exception cref="T:System.Deployment.Application.InvalidDeploymentException">Your ClickOnce deployment is corrupted. For tips on how to diagnose and correct the problem, see Troubleshooting ClickOnce Deployments.</exception>
  92.             <exception cref="T:System.Deployment.Application.TrustNotGrantedException">The local computer did not grant this application the permission level it requested to execute.</exception>
  93.         </member>
  94.         <member name="M:System.Deployment.Application.ApplicationDeployment.UpdateAsyncCancel">
  95.             <summary>Cancels an asynchronous update initiated by <see cref="M:System.Deployment.Application.ApplicationDeployment.UpdateAsync"></see>.</summary>
  96.         </member>
  97.         <member name="P:System.Deployment.Application.ApplicationDeployment.CurrentDeployment">
  98.             <summary>Returns the current <see cref="T:System.Deployment.Application.ApplicationDeployment"></see> for this deployment.</summary>
  99.             <returns>The current deployment.</returns>
  100.             <exception cref="T:System.Deployment.Application.ApplicationDeployment.InvalidDeploymentException">You attempted to call this static property from a non- ClickOnce application. </exception>
  101.         </member>
  102.         <member name="P:System.Deployment.Application.ApplicationDeployment.CurrentVersion">
  103.             <summary>Gets the version of the deployment for the current running instance of the application.</summary>
  104.             <returns>The current deployment version.</returns>
  105.         </member>
  106.         <member name="P:System.Deployment.Application.ApplicationDeployment.IsFirstRun">
  107.             <summary>Gets a value indicating whether this is the first time this application has run on the client computer. </summary>
  108.             <returns>true if this version of the application has never run on the client computer before; otherwise, false.</returns>
  109.         </member>
  110.         <member name="P:System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed">
  111.             <summary>Gets a value indicating whether the current application is a ClickOnce application.</summary>
  112.             <returns>true if this is a ClickOnce application; otherwise, false.</returns>
  113.         </member>
  114.         <member name="P:System.Deployment.Application.ApplicationDeployment.TimeOfLastUpdateCheck">
  115.             <summary>Gets the date of the time ClickOnce last checked for an application update.</summary>
  116.             <returns>The <see cref="T:System.DateTime"></see> of the last update check.</returns>
  117.         </member>
  118.         <member name="P:System.Deployment.Application.ApplicationDeployment.UpdatedApplicationFullName">
  119.             <summary>Gets the full name of the application after it has been updated.</summary>
  120.         </member>
  121.         <member name="P:System.Deployment.Application.ApplicationDeployment.UpdatedVersion">
  122.             <summary>Gets the version of the update that was recently downloaded.</summary>
  123.             <returns>The <see cref="T:System.Version"></see> describing the version of the update.</returns>
  124.         </member>
  125.         <member name="P:System.Deployment.Application.ApplicationDeployment.UpdateLocation">
  126.             <summary>Gets the Web site or file share from which this application updates itself.</summary>
  127.             <returns>The update path, expressed as an HTTP, HTTPS, or file URL; or as a Windows network file path (UNC).</returns>
  128.         </member>
  129.         <member name="T:System.Deployment.Application.CheckForUpdateCompletedEventArgs">
  130.             <summary>Represents detailed update information obtained through a call to <see cref="M:System.Deployment.Application.ApplicationDeployment.CheckForUpdateAsync"></see>.</summary>
  131.         </member>
  132.         <member name="P:System.Deployment.Application.CheckForUpdateCompletedEventArgs.AvailableVersion">
  133.             <summary>Gets the version number of the latest uninstalled version.</summary>
  134.             <returns>The <see cref="T:System.Version"></see> expressing the major, minor, build and revision numbers of the latest version.</returns>
  135.         </member>
  136.         <member name="P:System.Deployment.Application.CheckForUpdateCompletedEventArgs.IsUpdateRequired">
  137.             <summary>Gets a value indicating whether the update must be installed. </summary>
  138.             <returns>true if the update is required; otherwise, false.</returns>
  139.         </member>
  140.         <member name="P:System.Deployment.Application.CheckForUpdateCompletedEventArgs.MinimumRequiredVersion">
  141.             <summary>Gets the minimum version that the user must have installed on the computer. </summary>
  142.             <returns>A <see cref="T:System.Version"></see> object expressing the earliest version that all users must install.</returns>
  143.         </member>
  144.         <member name="P:System.Deployment.Application.CheckForUpdateCompletedEventArgs.UpdateAvailable">
  145.             <summary>Gets whether an uninstalled update is available.</summary>
  146.             <returns>true if new version of the application is available; otherwise, false.</returns>
  147.         </member>
  148.         <member name="P:System.Deployment.Application.CheckForUpdateCompletedEventArgs.UpdateSizeBytes">
  149.             <summary>Gets the size of the available update.</summary>
  150.             <returns>An <see cref="T:System.Int64"></see> describing the size, in bytes, of the available update. If no update is available, returns 0. </returns>
  151.         </member>
  152.         <member name="T:System.Deployment.Application.CheckForUpdateCompletedEventHandler">
  153.             <summary>Represents the method that will handle the <see cref="E:System.Deployment.Application.ApplicationDeployment.CheckForUpdateCompleted"></see> event of an <see cref="T:System.Deployment.Application.ApplicationDeployment"></see>. </summary>
  154.         </member>
  155.         <member name="T:System.Deployment.Application.DeploymentDownloadException">
  156.             <summary>Indicates that there was an error downloading either the ClickOnce manifests or the deployment's files to the client computer. </summary>
  157.         </member>
  158.         <member name="T:System.Deployment.Application.DeploymentException">
  159.             <summary>Defines a base class for all deployment-related exceptions.</summary>
  160.         </member>
  161.         <member name="M:System.Deployment.Application.DeploymentException.#ctor">
  162.             <summary>Initializes a new instance of the <see cref="T:System.Deployment.Application.DeploymentException"></see> class. </summary>
  163.         </member>
  164.         <member name="M:System.Deployment.Application.DeploymentException.#ctor(System.String)">
  165.             <summary>Initializes a new instance of the <see cref="T:System.Deployment.Application.DeploymentException"></see> class. </summary>
  166.         </member>
  167.         <member name="M:System.Deployment.Application.DeploymentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  168.             <summary>Initializes a new instance of the <see cref="T:System.Deployment.Application.DeploymentException"></see> class. </summary>
  169.         </member>
  170.         <member name="M:System.Deployment.Application.DeploymentException.#ctor(System.String,System.Exception)">
  171.             <summary>Initializes a new instance of the <see cref="T:System.Deployment.Application.DeploymentException"></see> class. </summary>
  172.         </member>
  173.         <member name="T:System.Deployment.Application.DeploymentProgressChangedEventArgs">
  174.             <summary>Represents progress data reported in an asynchronous operation.</summary>
  175.         </member>
  176.         <member name="P:System.Deployment.Application.DeploymentProgressChangedEventArgs.BytesCompleted">
  177.             <summary>Gets the number of bytes already downloaded by this operation.</summary>
  178.             <returns>An <see cref="T:System.Int64"></see> representing the data already transferred, in bytes. </returns>
  179.         </member>
  180.         <member name="P:System.Deployment.Application.DeploymentProgressChangedEventArgs.BytesTotal">
  181.             <summary>Gets the total number of bytes in the download operation.</summary>
  182.             <returns>An <see cref="T:System.Int64"></see> representing the total size of the download, in bytes.</returns>
  183.         </member>
  184.         <member name="P:System.Deployment.Application.DeploymentProgressChangedEventArgs.Group">
  185.             <summary>Gets the name of the file group being downloaded.</summary>
  186.             <returns>A <see cref="T:System.String"></see> containing the name of the file group, if the event occurred as the result of a call to <see cref="Overload:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupAsync"></see>; otherwise, a zero-length string. </returns>
  187.         </member>
  188.         <member name="P:System.Deployment.Application.DeploymentProgressChangedEventArgs.State">
  189.             <summary>Gets the action that the process is currently executing.</summary>
  190.             <returns>A <see cref="T:System.Deployment.Application.DeploymentProgressState"></see> value, stating what element or elements the operation is currently downloading. </returns>
  191.         </member>
  192.         <member name="T:System.Deployment.Application.DeploymentProgressChangedEventHandler">
  193.             <summary>Represents the method that will handle the <see cref="E:System.Deployment.Application.ApplicationDeployment.CheckForUpdateProgressChanged"></see> event, <see cref="E:System.Deployment.Application.ApplicationDeployment.UpdateProgressChanged"></see> event, or <see cref="E:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupProgressChanged"></see> event of an <see cref="T:System.Deployment.Application.ApplicationDeployment"></see>. </summary>
  194.         </member>
  195.         <member name="T:System.Deployment.Application.DeploymentProgressState">
  196.             <summary>Specifies the current stage of a ClickOnce download operation.</summary>
  197.         </member>
  198.         <member name="F:System.Deployment.Application.DeploymentProgressState.DownloadingApplicationFiles">
  199.             <summary>ClickOnce is downloading the DLLs and data files that comprised the application.</summary>
  200.         </member>
  201.         <member name="F:System.Deployment.Application.DeploymentProgressState.DownloadingApplicationInformation">
  202.             <summary>ClickOnce is downloading the application manifest.</summary>
  203.         </member>
  204.         <member name="F:System.Deployment.Application.DeploymentProgressState.DownloadingDeploymentInformation">
  205.             <summary>ClickOnce is downloading the deployment manifest.</summary>
  206.         </member>
  207.         <member name="T:System.Deployment.Application.DeploymentServiceCom">
  208.             <summary>Provides internal services for the ClickOnce deployment API. </summary>
  209.         </member>
  210.         <member name="M:System.Deployment.Application.DeploymentServiceCom.#ctor">
  211.             <summary>Creates a new instance of <see cref="T:System.Deployment.Application.DeploymentServiceCom"></see>.</summary>
  212.         </member>
  213.         <member name="M:System.Deployment.Application.DeploymentServiceCom.ActivateDeployment(System.String,System.Boolean)">
  214.             <summary>Starts the deployment on the client computer. </summary>
  215.             <param name="deploymentLocation">The location of the deployment manifest on disk.</param>
  216.             <param name="isShortcut">Whether deploymentLocation is a shortcut, or the actual file.</param>
  217.         </member>
  218.         <member name="M:System.Deployment.Application.DeploymentServiceCom.CheckForDeploymentUpdate(System.String)">
  219.             <summary>Checks the update location to determine whether an updated version of this deployment exists.</summary>
  220.             <param name="textualSubId">An internal identifier for the deployment.</param>
  221.         </member>
  222.         <member name="M:System.Deployment.Application.DeploymentServiceCom.EndServiceRightNow">
  223.             <summary>Stops a deployment update immediately. </summary>
  224.         </member>
  225.         <member name="M:System.Deployment.Application.DeploymentServiceCom.MaintainSubscription(System.String)">
  226.             <summary>Maintains the update subscription. </summary>
  227.             <param name="textualSubId">The internal ID of the deployment.</param>
  228.         </member>
  229.         <member name="M:System.Deployment.Application.DeploymentServiceCom.MigrateDeployments">
  230.             <summary>Migrates a set of deployments from one version to the next. </summary>
  231.         </member>
  232.         <member name="T:System.Deployment.Application.DownloadApplicationCompletedEventArgs">
  233.             <summary>Provides data for the <see cref="E:System.Deployment.Application.InPlaceHostingManager.DownloadApplicationCompleted"></see> event. </summary>
  234.         </member>
  235.         <member name="P:System.Deployment.Application.DownloadApplicationCompletedEventArgs.LogFilePath">
  236.             <summary>Gets the path of the ClickOnce log file. </summary>
  237.             <returns>A <see cref="T:System.String"></see> containing the log path.</returns>
  238.         </member>
  239.         <member name="T:System.Deployment.Application.DownloadFileGroupCompletedEventArgs">
  240.             <summary>Describes a file download that has recently completed. </summary>
  241.         </member>
  242.         <member name="P:System.Deployment.Application.DownloadFileGroupCompletedEventArgs.Group">
  243.             <summary>Gets the name of the file group being downloaded.</summary>
  244.             <returns>A <see cref="T:System.String"></see> representing the name of the file group.</returns>
  245.         </member>
  246.         <member name="T:System.Deployment.Application.DownloadFileGroupCompletedEventHandler">
  247.             <summary>Represents the method that will handle the <see cref="E:System.Deployment.Application.ApplicationDeployment.DownloadFileGroupCompleted"></see> event of an <see cref="T:System.Deployment.Application.ApplicationDeployment"></see>. </summary>
  248.         </member>
  249.         <member name="T:System.Deployment.Application.DownloadProgressChangedEventArgs">
  250.             <summary>Provides data for the <see cref="E:System.Deployment.Application.InPlaceHostingManager.DownloadProgressChanged"></see> event. </summary>
  251.         </member>
  252.         <member name="P:System.Deployment.Application.DownloadProgressChangedEventArgs.BytesDownloaded">
  253.             <summary>Gets the number of bytes downloaded to the local computer.</summary>
  254.             <returns>An <see cref="T:System.Int64"></see> representing the number of downloaded bytes. </returns>
  255.         </member>
  256.         <member name="P:System.Deployment.Application.DownloadProgressChangedEventArgs.State">
  257.             <summary>Gets the progress state of the download.</summary>
  258.             <returns>A <see cref="T:System.Deployment.Application.DeploymentProgressState"></see> value describing which portion of the ClickOnce application is being downloaded.</returns>
  259.         </member>
  260.         <member name="P:System.Deployment.Application.DownloadProgressChangedEventArgs.TotalBytesToDownload">
  261.             <summary>Gets the total number of bytes for the download operation. </summary>
  262.             <returns>An <see cref="T:System.Int64"></see> representing the total size of the download, in bytes.</returns>
  263.         </member>
  264.         <member name="T:System.Deployment.Application.GetManifestCompletedEventArgs">
  265.             <summary>Provides data for the <see cref="E:System.Deployment.Application.InPlaceHostingManager.GetManifestCompleted"></see> event. </summary>
  266.         </member>
  267.         <member name="P:System.Deployment.Application.GetManifestCompletedEventArgs.ApplicationIdentity">
  268.             <summary>Gets a description of the application. </summary>
  269.             <returns>An <see cref="T:System.ApplicationIdentity"></see> object.</returns>
  270.         </member>
  271.         <member name="P:System.Deployment.Application.GetManifestCompletedEventArgs.ApplicationManifest">
  272.             <summary>Gets the ClickOnce application manifest for this deployment.</summary>
  273.             <returns>An <see cref="T:System.Xml.XmlReader"></see> representing the application manifest.</returns>
  274.         </member>
  275.         <member name="P:System.Deployment.Application.GetManifestCompletedEventArgs.DeploymentManifest">
  276.             <summary>Gets the ClickOnce deployment manifest for this deployment.</summary>
  277.             <returns>An <see cref="T:System.Xml.XmlReader"></see> representing the deployment manifest.</returns>
  278.         </member>
  279.         <member name="P:System.Deployment.Application.GetManifestCompletedEventArgs.IsCached">
  280.             <summary>Gets a value indicating whether this ClickOnce application is cached.</summary>
  281.             <returns>true if the application is cached; otherwise, false.</returns>
  282.         </member>
  283.         <member name="P:System.Deployment.Application.GetManifestCompletedEventArgs.LogFilePath">
  284.             <summary>Gets the location of the ClickOnce error log.</summary>
  285.             <returns>A <see cref="T:System.String"></see> containing the location of the ClickOnce error log.</returns>
  286.         </member>
  287.         <member name="P:System.Deployment.Application.GetManifestCompletedEventArgs.ProductName">
  288.             <summary>Gets the name of the ClickOnce application.</summary>
  289.             <returns>A <see cref="T:System.String"></see> representing the product name, as stored in the assembly metadata of the ClickOnce application's main executable.</returns>
  290.         </member>
  291.         <member name="P:System.Deployment.Application.GetManifestCompletedEventArgs.SupportUri">
  292.             <summary>Gets the location of a Web page users can visit to obtain product support.</summary>
  293.             <returns>A <see cref="T:System.Uri"></see>.</returns>
  294.         </member>
  295.         <member name="P:System.Deployment.Application.GetManifestCompletedEventArgs.Version">
  296.             <summary>Gets the version of the application update.</summary>
  297.             <returns>A <see cref="T:System.Version"></see> representing the version number contained within the downloaded manifest.</returns>
  298.         </member>
  299.         <member name="T:System.Deployment.Application.InPlaceHostingManager">
  300.             <summary>Manages a ClickOnce deployment.</summary>
  301.         </member>
  302.         <member name="M:System.Deployment.Application.InPlaceHostingManager.#ctor(System.Uri)">
  303.             <summary>Creates a new instance of <see cref="T:System.Deployment.Application.InPlaceHostingManager"></see>.</summary>
  304.             <param name="deploymentManifest">A <see cref="T:System.Uri"></see> to a ClickOnce application's deployment manifest.</param>
  305.         </member>
  306.         <member name="E:System.Deployment.Application.InPlaceHostingManager.DownloadApplicationCompleted">
  307.             <summary>Occurs when the application has finished downloading to the local computer.</summary>
  308.         </member>
  309.         <member name="E:System.Deployment.Application.InPlaceHostingManager.DownloadProgressChanged">
  310.             <summary>Occurs when there is a change in the status of an application or manifest download.</summary>
  311.         </member>
  312.         <member name="E:System.Deployment.Application.InPlaceHostingManager.GetManifestCompleted">
  313.             <summary>Occurs when the deployment manifest has been downloaded to the local computer.</summary>
  314.         </member>
  315.         <member name="M:System.Deployment.Application.InPlaceHostingManager.AssertApplicationRequirements">
  316.             <summary>Determines whether the ClickOnce application has the appropriate permissions and platform dependencies to run on the local computer.</summary>
  317.         </member>
  318.         <member name="M:System.Deployment.Application.InPlaceHostingManager.CancelAsync">
  319.             <summary>Cancels an asynchronous download operation.</summary>
  320.         </member>
  321.         <member name="M:System.Deployment.Application.InPlaceHostingManager.Dispose">
  322.             <summary>Releases all resources used by the <see cref="T:System.Deployment.Application.InPlaceHostingManager"></see>. </summary>
  323.         </member>
  324.         <member name="M:System.Deployment.Application.InPlaceHostingManager.DownloadApplicationAsync">
  325.             <summary>Downloads an application update in the background.</summary>
  326.         </member>
  327.         <member name="M:System.Deployment.Application.InPlaceHostingManager.Execute">
  328.             <summary>Launches the ClickOnce application.</summary>
  329.             <returns>An <see cref="T:System.Runtime.Remoting.ObjectHandle"></see> corresponding to the launched application.</returns>
  330.         </member>
  331.         <member name="M:System.Deployment.Application.InPlaceHostingManager.GetManifestAsync">
  332.             <summary>Downloads the deployment manifest of the ClickOnce application in the background.</summary>
  333.         </member>
  334.         <member name="T:System.Deployment.Application.InvalidDeploymentException">
  335.             <summary>Indicates that ClickOnce could not read either the deployment or application manifests.</summary>
  336.         </member>
  337.         <member name="T:System.Deployment.Application.TrustNotGrantedException">
  338.             <summary>Indicates that the application does not have the appropriate level of trust to run on the local computer.</summary>
  339.         </member>
  340.         <member name="T:System.Deployment.Application.UpdateCheckInfo">
  341.             <summary>Represents detailed update information obtained through a call to <see cref="M:System.Deployment.Application.CheckForDetailedUpdate"></see>.</summary>
  342.         </member>
  343.         <member name="P:System.Deployment.Application.UpdateCheckInfo.AvailableVersion">
  344.             <summary>Gets the version number of the latest uninstalled version.</summary>
  345.             <returns>The <see cref="T:System.Version"></see> expressing the major and minor build and revision numbers of the latest version.</returns>
  346.         </member>
  347.         <member name="P:System.Deployment.Application.UpdateCheckInfo.IsUpdateRequired">
  348.             <summary>Gets a value indicating whether the update must be installed. </summary>
  349.             <returns>true if the update is required; otherwise, false.</returns>
  350.         </member>
  351.         <member name="P:System.Deployment.Application.UpdateCheckInfo.MinimumRequiredVersion">
  352.             <summary>Gets the minimum version that the user must have installed on the computer.</summary>
  353.             <returns>A <see cref="T:System.Version"></see> expressing the least version that the user must install.</returns>
  354.         </member>
  355.         <member name="P:System.Deployment.Application.UpdateCheckInfo.UpdateAvailable">
  356.             <summary>Gets whether an uninstalled update is available.</summary>
  357.             <returns>true if new version of the application is available; otherwise, false.</returns>
  358.         </member>
  359.         <member name="P:System.Deployment.Application.UpdateCheckInfo.UpdateSizeBytes">
  360.             <summary>Gets the size of the available update.</summary>
  361.             <returns>An <see cref="T:System.Int64"></see> describing the size, in bytes, of the available update. If no update is available, returns 0. </returns>
  362.         </member>
  363.     </members>
  364. </doc>