Share via


_Solution.Properties 属性

获取与 _Solution 有关的所有属性的集合。

命名空间:  EnvDTE
程序集:  EnvDTE(在 EnvDTE.dll 中)

语法

声明
ReadOnly Property Properties As Properties
Properties Properties { get; }
property Properties^ Properties {
    Properties^ get ();
}
abstract Properties : Properties with get
function get Properties () : Properties

属性值

类型:EnvDTE.Properties
一个 Properties 集合。

备注

某些属性公开为 _Solution 上的自动属性,或者公开为来自通过解决方案获取的对象(生成依赖项的 SolutionBuild 对象)的自动属性。

示例

Sub PropertiesExample(ByVal dte As DTE2)

    ' NOTE: This example requires a reference to the
    '       System.IO namespace.

    ' Before running this example, open a solution.

    Dim props As Properties = dte.Solution.Properties
    Dim prop As [Property]
    Dim msg As String = _
        Path.GetFileNameWithoutExtension(dte.Solution.FullName) & _
        " has the following properties:" & vbCrLf & vbCrLf

    For Each prop In props
        msg &= prop.Name & " = "
        Try
            msg &= prop.Value.ToString() & vbCrLf
        Catch
            msg &= "(Nothing)" & vbCrLf
        End Try
    Next

    MsgBox(msg)

End Sub
public void PropertiesExample(DTE2 dte)
{
    // NOTE: This example requires a reference to the
    //       System.IO namespace.

    // Before running this example, open a solution.

    Properties props = dte.Solution.Properties;
    string msg = 
        Path.GetFileNameWithoutExtension(dte.Solution.FullName) + 
        " has the following properties:\n\n";

    foreach (Property prop in props)
    {
        msg += prop.Name + " = ";
        try
        {
            msg += prop.Value.ToString() + "\n";
        }
        catch
        {
            msg += "(Nothing)\n";
        }
    }

    MessageBox.Show(msg);
}

.NET Framework 安全性

请参阅

参考

_Solution 接口

EnvDTE 命名空间

其他资源

如何:编译和运行自动化对象模型代码示例