ContentFormatterArgument Constructor ()
ContentFormatterArgument クラスの既定のコンストラクタです。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public Sub New
public ContentFormatterArgument ()
public:
ContentFormatterArgument ()
public ContentFormatterArgument ()
public function ContentFormatterArgument ()
解説
既定のコンストラクタを使用する場合は、直ちに Name プロパティを設定してから、Parent プロパティを設定する必要があります。Value プロパティは、その後で設定できます。
使用例
次の例では、この既定のコンストラクタの使用方法を示します。
// Define a formatter argument and set properties.
ContentFormatterArgument contentFormatterArgument1 =
new ContentFormatterArgument();
contentFormatterArgument1.Name = "XsltBaseDirectoryPath";
contentFormatterArgument1.Parent = contentFormatter;
contentFormatterArgument1.Value = @"C:\NS\Default\XSLFiles";
' Define a formatter argument and set properties.
Dim contentFormatterArgument1 As ContentFormatterArgument = _
New ContentFormatterArgument()
contentFormatterArgument1.Name = "XsltBaseDirectoryPath"
contentFormatterArgument1.Parent = contentFormatter
contentFormatterArgument1.Value = "C:\NS\Default\XSLFiles"
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
ContentFormatterArgument Class
ContentFormatterArgument Members
Microsoft.SqlServer.Management.Nmo Namespace
その他の技術情報
コンテンツ フォーマッタの構成
ContentFormatter/Arguments の Argument 要素 (ADF)