VsTaskLibraryHelper.CreateTaskBody Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
| CreateTaskBody(VsTaskBodyCallback) |
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann. |
| CreateTaskBody(Action) |
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann. |
| CreateTaskBody(Func<Object>) |
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann. |
| CreateTaskBody<T>(Action<T>) |
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann. |
| CreateTaskBody<T>(Func<T,Object>) |
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann. |
CreateTaskBody(VsTaskBodyCallback)
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann.
public:
static Microsoft::VisualStudio::Shell::Interop::IVsTaskBody ^ CreateTaskBody(Microsoft::VisualStudio::Shell::VsTaskBodyCallback ^ action);
public:
static Microsoft::VisualStudio::Shell::Interop::IVsTaskBody ^ CreateTaskBody(Microsoft::VisualStudio::Shell::VsTaskBodyCallback ^ action);
public static Microsoft.VisualStudio.Shell.Interop.IVsTaskBody CreateTaskBody (Microsoft.VisualStudio.Shell.VsTaskBodyCallback action);
static member CreateTaskBody : Microsoft.VisualStudio.Shell.VsTaskBodyCallback -> Microsoft.VisualStudio.Shell.Interop.IVsTaskBody
Public Function CreateTaskBody (action As VsTaskBodyCallback) As IVsTaskBody
Parameter
- action
- VsTaskBodyCallback
Anonyme Methode, die als Aufgaben Text ausgeführt werden soll.
Gibt zurück
eine Implementierung von ivstaskbody.
Gilt für
CreateTaskBody(Action)
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann.
public:
static Microsoft::VisualStudio::Shell::Interop::IVsTaskBody ^ CreateTaskBody(Action ^ action);
public static Microsoft.VisualStudio.Shell.Interop.IVsTaskBody CreateTaskBody (Action action);
static member CreateTaskBody : Action -> Microsoft.VisualStudio.Shell.Interop.IVsTaskBody
Public Function CreateTaskBody (action As Action) As IVsTaskBody
Parameter
- action
- Action
Anonyme Methode, die als Aufgaben Text ausgeführt werden soll.
Gibt zurück
eine Implementierung von ivstaskbody.
Gilt für
CreateTaskBody(Func<Object>)
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann.
public:
static Microsoft::VisualStudio::Shell::Interop::IVsTaskBody ^ CreateTaskBody(Func<System::Object ^> ^ action);
public static Microsoft.VisualStudio.Shell.Interop.IVsTaskBody CreateTaskBody (Func<object> action);
static member CreateTaskBody : Func<obj> -> Microsoft.VisualStudio.Shell.Interop.IVsTaskBody
Public Function CreateTaskBody (action As Func(Of Object)) As IVsTaskBody
Parameter
Gibt zurück
eine Implementierung von ivstaskbody.
Gilt für
CreateTaskBody<T>(Action<T>)
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann.
public:
generic <typename T>
static Microsoft::VisualStudio::Shell::Interop::IVsTaskBody ^ CreateTaskBody(Action<T> ^ action);
public static Microsoft.VisualStudio.Shell.Interop.IVsTaskBody CreateTaskBody<T> (Action<T> action);
static member CreateTaskBody : Action<'T> -> Microsoft.VisualStudio.Shell.Interop.IVsTaskBody
Public Function CreateTaskBody(Of T) (action As Action(Of T)) As IVsTaskBody
Typparameter
- T
Der Typ des zu erstellenden Objekts.
Parameter
- action
- Action<T>
Anonyme Methode, die als Aufgaben Text ausgeführt werden soll.
Gibt zurück
eine Implementierung von ivstaskbody.
Gilt für
CreateTaskBody<T>(Func<T,Object>)
Erstellt einen Aufgaben Text, der vom Aufgabenplaner-Dienst genutzt werden kann.
public:
generic <typename T>
static Microsoft::VisualStudio::Shell::Interop::IVsTaskBody ^ CreateTaskBody(Func<T, System::Object ^> ^ action);
public static Microsoft.VisualStudio.Shell.Interop.IVsTaskBody CreateTaskBody<T> (Func<T,object> action);
static member CreateTaskBody : Func<'T, obj> -> Microsoft.VisualStudio.Shell.Interop.IVsTaskBody
Public Function CreateTaskBody(Of T) (action As Func(Of T, Object)) As IVsTaskBody
Typparameter
- T
Der Typ des zu erstellenden Objekts.
Parameter
Gibt zurück
eine Implementierung von ivstaskbody.