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

30 lines
1.3 KiB
C#

using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// <summary>Provides a remotable version of the AssemblyName.</summary>
// Token: 0x02000230 RID: 560
[ComVisible(true)]
public class AssemblyNameProxy : MarshalByRefObject
{
/// <summary>Gets the AssemblyName for a given file.</summary>
/// <returns>An AssemblyName object representing the given file.</returns>
/// <param name="assemblyFile">The assembly file for which to get the AssemblyName. </param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="assemblyFile" /> is null. </exception>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="assemblyFile" /> is empty. </exception>
/// <exception cref="T:System.IO.FileNotFoundException">
/// <paramref name="assemblyFile" /> is not found. </exception>
/// <exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
/// <exception cref="T:System.BadImageFormatException">
/// <paramref name="assemblyFile" /> is not a valid assembly. </exception>
// Token: 0x06001DA4 RID: 7588 RVA: 0x0006EB34 File Offset: 0x0006CD34
public AssemblyName GetAssemblyName(string assemblyFile)
{
return AssemblyName.GetAssemblyName(assemblyFile);
}
}
}