Partager via


Server.GetDefaultInitFields Method

Returns the property types that are initialized by default when the specified object is initialized.

Espace de noms: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntaxe

'Déclaration
Public Function GetDefaultInitFields ( _
    typeObject As Type _
) As StringCollection
public StringCollection GetDefaultInitFields (
    Type typeObject
)
public:
StringCollection^ GetDefaultInitFields (
    Type^ typeObject
)
public StringCollection GetDefaultInitFields (
    Type typeObject
)
public function GetDefaultInitFields (
    typeObject : Type
) : StringCollection

Paramètres

  • typeObject
    A Type system object that specifies the type of object.

Valeur de retour

A StringCollection system object that contains a list of property types that are initialized by default when the specified object is initialized.

Notes

Texte mis à jour :

This method is used to control the way in which object properties are initialized in an SMO application. You can use this method to optimize your SMO application.

Cet espace de noms, cette classe ou ce membre est pris en charge uniquement par la version 2.0 de Microsoft .NET Framework.

Exemple

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")
'Assign the Table object type to a System.Type object variable.
Dim tb As Table
Dim typ As Type
tb = New Table
typ = tb.GetType
'Assign the current default initialization fields for the Table object type to a 
'StringCollection object variable.
Dim sc As StringCollection
sc = srv.GetDefaultInitFields(typ)
'Set the default initialization fields for the Table object type to the CreateDate property.
srv.SetDefaultInitFields(typ, "CreateDate")
'Retrieve the Schema, Name, and CreateDate properties for every table in AdventureWorks.
'Note that the improvement in performance can be viewed in SQL Profiler.
For Each tb In db.Tables
    Console.WriteLine(tb.Schema + "." + tb.Name + " " + tb.CreateDate)
Next
'Set the default initialization fields for the Table object type back to the original settings.
srv.SetDefaultInitFields(typ, sc)

Sécurité des threads

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plateformes

Plateformes de développement

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Plateformes cibles

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Voir aussi

Référence

Server Class
Server Members
Microsoft.SqlServer.Management.Smo Namespace

Autres ressources

How to: Set Default Initialization Fields in Visual Basic .NET
Setting Properties
Calling Methods
Gestion des serveurs