次の方法で共有


GetDefaultInitFields メソッド

指定したオブジェクトが初期化されるときに既定で初期化されるプロパティの種類を返します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
Public Function GetDefaultInitFields ( _
    typeObject As Type _
) As StringCollection
'使用
Dim instance As Server
Dim typeObject As Type
Dim returnValue As StringCollection

returnValue = instance.GetDefaultInitFields(typeObject)
public StringCollection GetDefaultInitFields(
    Type typeObject
)
public:
StringCollection^ GetDefaultInitFields(
    Type^ typeObject
)
member GetDefaultInitFields : 
        typeObject:Type -> StringCollection 
public function GetDefaultInitFields(
    typeObject : Type
) : StringCollection

パラメーター

  • typeObject
    型: System. . :: . .Type
    オブジェクトの種類を示す Type システム オブジェクトです。

戻り値

型: System.Collections.Specialized. . :: . .StringCollection
指定したオブジェクトが初期化されるときに既定で初期化されるプロパティの種類の一覧を含む StringCollection システム オブジェクトです。

説明

このメソッドを使用して、SMO アプリケーションでオブジェクト プロパティを初期化する方法を制御します。このメソッドを使用すると、SMO アプリケーションを最適化できます。

使用例

'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)