次の方法で共有


ScriptingOptions.Encoding プロパティ

スクリプト作成オプションのエンコードを取得または設定します。

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

構文

'宣言
Public Property Encoding As Encoding 
    Get 
    Set
'使用
Dim instance As ScriptingOptions 
Dim value As Encoding 

value = instance.Encoding

instance.Encoding = value
public Encoding Encoding { get; set; }
public:
property Encoding^ Encoding {
    Encoding^ get ();
    void set (Encoding^ value);
}
member Encoding : Encoding with get, set
function get Encoding () : Encoding 
function set Encoding (value : Encoding)

プロパティ値

型: System.Text.Encoding
スクリプト作成オプションのエンコードを示す Encoding オブジェクトです。

使用例

次のコード例では、スクリプトに UTF8 エンコードを使用するように指定します。

Visual Basic

Dim srv As New Server("(local)")
Dim scrp As New ScriptingOptions(srv)
Dim sEnc As Encoding = Encoding.UTF8
scrp.Encoding = sEnc

PowerShell

$srv = New-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$scrp = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions($srv)
$sEnc = System.Text.Encoding.UTF8
$scrp.Encoding = $sEnc

関連項目

参照

ScriptingOptions クラス

Microsoft.SqlServer.Management.Smo 名前空間

その他の技術情報

スクリプト