14 references to Void
Aspire.Hosting (9)
Ats\AtsCapabilityInfo.cs (1)
193
/// Use <see cref="AtsConstants.
Void
"/> TypeId for void return types.
Ats\AtsCapabilityScanner.cs (7)
1483
returnTypeRef = new AtsTypeRef { TypeId = AtsConstants.
Void
, Category = AtsTypeCategory.Primitive };
1487
returnTypeRef = new AtsTypeRef { TypeId = AtsConstants.
Void
, Category = AtsTypeCategory.Primitive };
1495
?? new AtsTypeRef { TypeId = AtsConstants.
Void
, Category = AtsTypeCategory.Primitive }
1496
: new AtsTypeRef { TypeId = AtsConstants.
Void
, Category = AtsTypeCategory.Primitive };
1501
?? new AtsTypeRef { TypeId = AtsConstants.
Void
, Category = AtsTypeCategory.Primitive };
1527
var voidTypeRef = new AtsTypeRef { TypeId = AtsConstants.
Void
, Category = AtsTypeCategory.Primitive };
1828
TypeId = AtsConstants.
Void
,
Ats\AtsConstants.cs (1)
319
String or Char or Number or Boolean or
Void
=> true,
Aspire.Hosting.CodeGeneration.TypeScript (5)
AtsTypeScriptCodeGenerator.cs (5)
169
AtsConstants.
Void
=> "void",
1161
var returnType = callbackReturnType == null || callbackReturnType.TypeId == AtsConstants.
Void
1250
&& callbackParam.CallbackReturnType.TypeId != AtsConstants.
Void
;
1947
var isVoid = capability.ReturnType == null || capability.ReturnType.TypeId == AtsConstants.
Void
;
2144
var isVoid = capability.ReturnType == null || capability.ReturnType.TypeId == AtsConstants.
Void
;