|
#region Assembly System.Deployment, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Deployment.dll
#endregion
using System.Deployment.Application.Manifest;
namespace System.Deployment.Application
{
internal static class ShellExposure
{
public static void ParseAppShortcut(string shortcutFile, out DefinitionIdentity subId, out Uri providerUri);
public static void RemoveShellExtensions(DefinitionIdentity subId, AssemblyManifest appManifest, string productName);
public static void RemoveSubscriptionShellExposure(SubscriptionState subState);
public static void UpdateShellExtensions(SubscriptionState subState, ref ShellExposureInformation shellExposureInformation);
public static void UpdateSubscriptionShellExposure(SubscriptionState subState);
public class ShellExposureInformation
{
protected ShellExposureInformation();
public string ApplicationFolderPath { get; }
public string ApplicationRootFolderPath { get; }
public string ApplicationShortcutPath { get; }
public string AppProduct { get; }
public string AppSuiteName { get; }
public string AppSupportShortcut { get; }
public string AppVendor { get; }
public string ARPDisplayName { get; }
public string DesktopShortcutPath { get; }
public string ShortcutAppId { get; set; }
public string SupportShortcutPath { get; }
public static ShellExposureInformation CreateShellExposureInformation(DefinitionIdentity subscriptionIdentity);
public static ShellExposureInformation CreateShellExposureInformation(string publisher, string suiteName, string product, string shortcutAppId);
}
}
} |