using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Provides a remotable version of the AssemblyName.
// Token: 0x02000230 RID: 560
[ComVisible(true)]
public class AssemblyNameProxy : MarshalByRefObject
{
/// Gets the AssemblyName for a given file.
/// An AssemblyName object representing the given file.
/// The assembly file for which to get the AssemblyName.
///
/// is null.
///
/// is empty.
///
/// is not found.
/// The caller does not have the required permission.
///
/// is not a valid assembly.
// Token: 0x06001DA4 RID: 7588 RVA: 0x0006EB34 File Offset: 0x0006CD34
public AssemblyName GetAssemblyName(string assemblyFile)
{
return AssemblyName.GetAssemblyName(assemblyFile);
}
}
}