IDatabaseObjectVisitor<T> Interface

Represents a database object visitor.

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

Syntax

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

Type Parameters

  • T
    The type of the database object visitor.

Methods

  Name Description
Public method Visit(IApplicationRole) Visits the specified IBuiltInFunction object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(IAsymmetricKey) Visits the specified IAsymmetricKey object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(ICertificate) Visits the specified ICertificate object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(ICredential) Visits the specified ICredential object. (Inherited from IServerOwnedObjectVisitor<T>.)
Public method Visit(IDatabase) Visits the specified IDatabase object. (Inherited from IServerOwnedObjectVisitor<T>.)
Public method Visit(IDatabaseDdlTrigger) Visits the specified IDatabaseDdlTrigger object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(IDatabaseRole) Visits the specified IDatabaseRole object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(IExtendedStoredProcedure) Visits the specified IExtendedStoredProcedure object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(IFileGroup) Visits the specified IFileGroup object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(ILogin) Visits the specified ILogin object. (Inherited from IServerOwnedObjectVisitor<T>.)
Public method Visit(IPartitionScheme) Visits the specified IPartitionScheme object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(IScalarValuedFunction) Visits the specified IScalarValuedFunction object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(ISchema) Visits the specified ISchema object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(IServer) Visits the specified IServer object.
Public method Visit(IServerDdlTrigger) Visits the specified IServerDdlTrigger object. (Inherited from IServerOwnedObjectVisitor<T>.)
Public method Visit(IStoredProcedure) Visits the specified IBuiltInFunction object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(ITable) Visits the specified IBuiltInFunction object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(ITableValuedFunction) Visits the specified ITableValuedFunction object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(IUser) Visits the specified IUser object. (Inherited from IDatabaseOwnedObjectVisitor<T>.)
Public method Visit(IUserDefinedAggregate) Visits the specified IUserDefinedAggregate object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(IUserDefinedClrType) Visits the specified IUserDefinedClrType object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(IUserDefinedDataType) Visits the specified IUserDefinedDataType object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(IUserDefinedTableType) Visits the specified IUserDefinedTableType object. (Inherited from ISchemaOwnedObjectVisitor<T>.)
Public method Visit(IView) Visits the specified IView object. (Inherited from ISchemaOwnedObjectVisitor<T>.)

Top