28 lines
1.2 KiB
C#
28 lines
1.2 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Specifies the paths that are used to search for DLLs that provide functions for platform invokes.</summary>
|
|
// Token: 0x02000576 RID: 1398
|
|
[Token(Token = "0x2000576")]
|
|
[ComVisible(false)]
|
|
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Method)]
|
|
public sealed class DefaultDllImportSearchPathsAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute" /> class, specifying the paths to use when searching for the targets of platform invokes.</summary>
|
|
/// <param name="paths">A bitwise combination of enumeration values that specify the paths that the LoadLibraryEx function searches during platform invokes.</param>
|
|
// Token: 0x06002AA2 RID: 10914 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002AA2")]
|
|
[Address(RVA = "0x4D83A0", Offset = "0x4D71A0", VA = "0x1804D83A0")]
|
|
public DefaultDllImportSearchPathsAttribute(DllImportSearchPath paths)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04001918 RID: 6424
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4001918")]
|
|
internal DllImportSearchPath _paths;
|
|
}
|
|
}
|