1 write to Namespace
Microsoft.AspNetCore.Components.AI.SourceGenerators (1)
ToolBlockCandidate.cs (1)
24
Namespace
= @namespace;
9 references to Namespace
Microsoft.AspNetCore.Components.AI.SourceGenerators (9)
ToolBlockCandidate.cs (3)
55
return
Namespace
== other.
Namespace
68
var hash = Hash.Combine(
Namespace
, ClassName);
ToolBlockEmitter.cs (6)
22
if (!string.IsNullOrEmpty(candidate.
Namespace
))
24
sb.AppendLine($"namespace {candidate.
Namespace
};");
216
var fullClass = string.IsNullOrEmpty(candidate.
Namespace
)
218
: "global::" + candidate.
Namespace
+ "." + handlerName;
234
return string.IsNullOrEmpty(candidate.
Namespace
)
236
: Sanitize(candidate.
Namespace
) + "." + suffix;