(uint userTypeId)
| 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 | { |