Właściwość VCDebugSettings.CommandArguments —
Pobiera lub ustawia argumentów do przekazania do procesu, określona w Command po Attach ma wartość false.
Przestrzeń nazw: Microsoft.VisualStudio.VCProjectEngine
Zestaw: Microsoft.VisualStudio.VCProjectEngine (w Microsoft.VisualStudio.VCProjectEngine.dll)
Składnia
'Deklaracja
Property CommandArguments As String
string CommandArguments { get; set; }
property String^ CommandArguments {
String^ get ();
void set (String^ value);
}
abstract CommandArguments : string with get, set
function get CommandArguments () : String
function set CommandArguments (value : String)
Wartość właściwości
Typ: String
Argumenty przekazywane do procesu, określona w Command.
Uwagi
Zobacz Porady: kompilowanie przykładowego kodu dla rozszerzalności modelu projektów informacji na temat sposobu skompilować i uruchomić ten przykład.
Przykłady
Poniższy przykład modyfikuje CommandArguments właściwość w zintegrowane środowisko programistyczne (IDE):
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim mystring As String
Dim prj As VCProject
Dim cfgs, tools As IVCCollection
Dim cfg As VCConfiguration
Dim tool As VCDebugSettings
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.DebugSettings
tool.CommandArguments = "test testing"
End Sub
End Module
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.