No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FullPersonName.cs 626B

123456789101112131415161718192021
  1. using AppleAuth.Interfaces;
  2. using System;
  3. namespace AppleAuth.Native
  4. {
  5. [Serializable]
  6. internal class FullPersonName : PersonName, IPersonName
  7. {
  8. public bool _hasPhoneticRepresentation = false;
  9. public PersonName _phoneticRepresentation = null;
  10. public new IPersonName PhoneticRepresentation { get { return _phoneticRepresentation; } }
  11. public override void OnAfterDeserialize()
  12. {
  13. base.OnAfterDeserialize();
  14. SerializationTools.FixSerializationForObject(ref this._phoneticRepresentation, this._hasPhoneticRepresentation);
  15. }
  16. }
  17. }