IServerOwnedObjectVisitor<T> Interface

Represents a server-owned object visitor.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Interface IServerOwnedObjectVisitor(Of T)
'Usage
Dim instance As IServerOwnedObjectVisitor(Of T)
public interface IServerOwnedObjectVisitor<T>
generic<typename T>
public interface class IServerOwnedObjectVisitor
type IServerOwnedObjectVisitor<'T> =  interface end
JScript does not support generic types and methods.

Type Parameters

  • T
    The type of the server-owned object visitor.

Methods

  Name Description
Public method Visit(ICredential) Visits the specified ICredential object.
Public method Visit(IDatabase) Visits the specified IDatabase object.
Public method Visit(ILogin) Visits the specified ILogin object.
Public method Visit(IServerDdlTrigger) Visits the specified IServerDdlTrigger object.

Top