MCPcopy Create free account
hub / github.com/apache/fory / WithTypeIdRegistration

Method WithTypeIdRegistration

csharp/src/Fory/TypeInfo.cs:568–592  ·  view source on GitHub ↗
(uint userTypeId)

Source from the content-addressed store, hash-verified

566 internal MetaString? TypeName { get; }
567
568 internal TypeInfo WithTypeIdRegistration(uint userTypeId)
569 {
570 return new TypeInfo(
571 Type,
572 _serializer,
573 BuiltInTypeId,
574 UserTypeKind,
575 IsDynamicType,
576 IsNullableType,
577 IsRefType,
578 DefaultObject,
579 Evolving,
580 isRegistered: true,
581 userTypeId: userTypeId,
582 registerByName: false,
583 namespaceName: null,
584 typeName: null,
585 _writeDataObject,
586 _readDataObject,
587 _writeObject,
588 _readObject,
589 _typeMetaFields,
590 WireTypeId,
591 _typeMeta);
592 }
593
594 internal TypeInfo WithTypeNameRegistration(MetaString namespaceName, MetaString typeName)
595 {

Callers 1

RegisterMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected