Microsoft.SqlServer.TransactSql.ScriptDom by Microsoft

<PackageReference Include="Microsoft.SqlServer.TransactSql.ScriptDom" Version="161.9109.0" />

.NET API 5,160,480 bytes

 IndexType

public class IndexType : TSqlFragment
Represents an index type
using System; namespace Microsoft.SqlServer.TransactSql.ScriptDom { [Serializable] public class IndexType : TSqlFragment { private IndexTypeKind? _indexTypeKind; public IndexTypeKind? IndexTypeKind { get { return _indexTypeKind; } set { _indexTypeKind = value; } } public override void Accept(TSqlFragmentVisitor visitor) { visitor?.ExplicitVisit(this); } public override void AcceptChildren(TSqlFragmentVisitor visitor) { base.AcceptChildren(visitor); } } }