UserDefinedFunction.Indexes Property

Represents a collection of Index objects. Each Index object represents an index defined on the user-defined function.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
<SfcObjectAttribute(SfcContainerRelationship.ChildContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(Index), SfcObjectFlags.Design)> _
Public ReadOnly Property Indexes As IndexCollection 
    Get
'Usage
Dim instance As UserDefinedFunction 
Dim value As IndexCollection 

value = instance.Indexes
[SfcObjectAttribute(SfcContainerRelationship.ChildContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(Index), SfcObjectFlags.Design)]
public IndexCollection Indexes { get; }
[SfcObjectAttribute(SfcContainerRelationship::ChildContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(Index), SfcObjectFlags::Design)]
public:
property IndexCollection^ Indexes {
    IndexCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ChildContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(Index), SfcObjectFlags.Design)>]
member Indexes : IndexCollection
function get Indexes () : IndexCollection

Property Value

Type: Microsoft.SqlServer.Management.Smo.IndexCollection
An IndexCollection object that represents all the indexes defined on the user-defined function.

Remarks

The Index property is used to define table constraints.

Examples

Setting Properties

See Also

Reference

UserDefinedFunction Class

Microsoft.SqlServer.Management.Smo Namespace

Other Resources

User-Defined Functions (Database Engine)

CREATE FUNCTION (Transact-SQL)