ConfigurationManager.ConfigurationRowNames プロパティ
プロジェクトまたはプロジェクト項目について、すべての定義済みの構成名の配列を取得します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property ConfigurationRowNames As Object
Object ConfigurationRowNames { get; }
property Object^ ConfigurationRowNames {
Object^ get ();
}
abstract ConfigurationRowNames : Object
function get ConfigurationRowNames () : Object
プロパティ値
型 : System.Object
プロジェクトまたはプロジェクト項目に対するすべての定義済みの構成名の配列。
例
public void CodeExample(DTE2 dte, AddIn addin)
{ // Make sure you have a solution loaded into Visual Studio
// before running the following example.
try
{
ConfigurationManager configmgr;
Array arrayCRN;
if (dte.Solution.Projects.Count > 0)
{
configmgr = dte.Solution.Projects.Item(1).ConfigurationManager;
// Show all defined configuration names for the parent
// object of this Configuration Manager.
arrayCRN = (Array)configmgr.ConfigurationRowNames;
string cfnames = "Configuration Row Names: \n";
foreach (string n in arrayCRN)
cfnames = cfnames + n + "\n";
MessageBox.Show(cfnames);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。