Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/InteropServices/DefaultDllImportSearchPathsAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

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: 0x02000595 RID: 1429
[Token(Token = "0x2000595")]
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Method)]
[ComVisible(false)]
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: 0x06002CB6 RID: 11446 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CB6")]
[Address(RVA = "0x41F8E0", Offset = "0x41E8E0", VA = "0x18041F8E0")]
public DefaultDllImportSearchPathsAttribute(DllImportSearchPath paths)
{
}
// Token: 0x040019DB RID: 6619
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40019DB")]
internal DllImportSearchPath _paths;
}
}