Files
2026-06-04 11:42:34 +02:00

29 lines
1.1 KiB
C#

using System;
using System.Runtime.InteropServices;
namespace System.Deployment.Internal
{
/// <summary>Provides access to internal properties of an <see cref="T:System.ApplicationIdentity" /> object.</summary>
// Token: 0x02000149 RID: 329
[ComVisible(false)]
public static class InternalApplicationIdentityHelper
{
// Token: 0x060010C8 RID: 4296 RVA: 0x00044E48 File Offset: 0x00043048
[MonoTODO("2.0 SP1 member")]
public static object GetActivationContextData(ActivationContext appInfo)
{
throw new NotImplementedException();
}
/// <summary>Gets an IDefinitionAppId Interface representing the unique identifier of an <see cref="T:System.ApplicationIdentity" /> object.</summary>
/// <returns>The unique identifier held by the <see cref="T:System.ApplicationIdentity" /> object.</returns>
/// <param name="id">The object from which to extract the identifier.</param>
// Token: 0x060010C9 RID: 4297 RVA: 0x00044E50 File Offset: 0x00043050
[MonoTODO]
public static object GetInternalAppId(ApplicationIdentity id)
{
throw new NotImplementedException();
}
}
}