共用方式為


_Solution.Properties 屬性

取得與 _Solution 有關之所有屬性的集合。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
ReadOnly Property Properties As Properties
    Get
Properties Properties { get; }
property Properties^ Properties {
    Properties^ get ();
}
abstract Properties : Properties
function get Properties () : Properties

屬性值

型別:EnvDTE.Properties
Properties 集合。

備註

某些屬性公開為 _Solution 上或透過方案所取得之物件中的 Automation 屬性,例如,建構相依性的 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 命名空間

其他資源

HOW TO:編譯和執行 Automation 物件模型程式碼範例