This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
using System;
using Cpp2IlInjected;
namespace System.Data.SqlTypes
{
/// <summary>All the <see cref="N:System.Data.SqlTypes" /> objects and structures implement the <see langword="INullable" /> interface.</summary>
// Token: 0x0200009E RID: 158
[Token(Token = "0x200009E")]
public interface INullable
{
/// <summary>Indicates whether a structure is null. This property is read-only.</summary>
/// <returns>
/// <see cref="T:System.Data.SqlTypes.SqlBoolean" />
/// <see langword="true" /> if the value of this object is null. Otherwise, <see langword="false" />.</returns>
// Token: 0x1700016A RID: 362
// (get) Token: 0x060008F2 RID: 2290
[Token(Token = "0x1700016A")]
bool IsNull
{
[Token(Token = "0x60008F2")]
[Address(Slot = "0")]
get;
}
}
}