26 lines
788 B
C#
26 lines
788 B
C#
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;
|
|
}
|
|
}
|
|
}
|