(Type type, uint id, TypeInfo? explicitTypeInfo = null)
| 286 | } |
| 287 | |
| 288 | internal void Register(Type type, uint id, TypeInfo? explicitTypeInfo = null) |
| 289 | { |
| 290 | TypeInfo typeInfo = GetOrCreateTypeInfo(type, explicitTypeInfo).WithTypeIdRegistration(id); |
| 291 | _typeInfos.Set(TypeMapKey.Get(type), typeInfo); |
| 292 | _byUserTypeId[id] = typeInfo; |
| 293 | InvalidateFinalizedVersion(); |
| 294 | } |
| 295 | |
| 296 | internal static (string NamespaceName, string TypeName) SplitTypeName(string name) |
| 297 | { |
nothing calls this directly
no test coverage detected