Files
Dec2017-Script-Dump/mscorlib/System/Runtime/InteropServices/DESCKIND.cs
T
2026-06-04 11:42:34 +02:00

31 lines
1011 B
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.DESCKIND" /> instead.</summary>
// Token: 0x02000307 RID: 775
[Obsolete]
[Serializable]
public enum DESCKIND
{
/// <summary>Indicates that no match was found.</summary>
// Token: 0x04000CFB RID: 3323
DESCKIND_NONE,
/// <summary>Indicates that a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> was returned.</summary>
// Token: 0x04000CFC RID: 3324
DESCKIND_FUNCDESC,
/// <summary>Indicates that a VARDESC was returned.</summary>
// Token: 0x04000CFD RID: 3325
DESCKIND_VARDESC,
/// <summary>Indicates that a TYPECOMP was returned.</summary>
// Token: 0x04000CFE RID: 3326
DESCKIND_TYPECOMP,
/// <summary>Indicates that an IMPLICITAPPOBJ was returned.</summary>
// Token: 0x04000CFF RID: 3327
DESCKIND_IMPLICITAPPOBJ,
/// <summary>Indicates an end of enumeration marker.</summary>
// Token: 0x04000D00 RID: 3328
DESCKIND_MAX
}
}