Method TargetTemplate Args Property
This is used to get or set specialized template arguments if any (used with extension methods)
Definition
Namespace: Sandcastle.Tools.BuildComponents.Targets
Assembly: Sandcastle.Tools.BuildComponents.Targets (in Sandcastle.Tools.BuildComponents.Targets.dll) Version: 2026.1.20.0
Assembly: Sandcastle.Tools.BuildComponents.Targets (in Sandcastle.Tools.BuildComponents.Targets.dll) Version: 2026.1.20.0
C#
public IList<TypeReference> TemplateArgs { get; set; }VB
Public Property TemplateArgs As IList(Of TypeReference)
Get
SetC++
public:
property IList<TypeReference^>^ TemplateArgs {
IList<TypeReference^>^ get ();
void set (IList<TypeReference^>^ value);
}F#
member TemplateArgs : IList<TypeReference> with get, set