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)
1483returnTypeRef = new AtsTypeRef { TypeId = AtsConstants.Void, Category = AtsTypeCategory.Primitive }; 1487returnTypeRef = 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 }; 1527var voidTypeRef = new AtsTypeRef { TypeId = AtsConstants.Void, Category = AtsTypeCategory.Primitive }; 1828TypeId = AtsConstants.Void,
Ats\AtsConstants.cs (1)
319String or Char or Number or Boolean or Void => true,
Aspire.Hosting.CodeGeneration.TypeScript (5)
AtsTypeScriptCodeGenerator.cs (5)
169AtsConstants.Void => "void", 1161var returnType = callbackReturnType == null || callbackReturnType.TypeId == AtsConstants.Void 1250&& callbackParam.CallbackReturnType.TypeId != AtsConstants.Void; 1947var isVoid = capability.ReturnType == null || capability.ReturnType.TypeId == AtsConstants.Void; 2144var isVoid = capability.ReturnType == null || capability.ReturnType.TypeId == AtsConstants.Void;