using FishNet.Documenting; using FishNet.Utility; using System; using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo(UtilityConstants.GENERATED_ASSEMBLY_NAME)] //Required for internal tests. [assembly: InternalsVisibleTo(UtilityConstants.TEST_ASSEMBLY_NAME)] namespace FishNet.Serializing { /// /// Used to read generic types. /// [APIExclude] public static class GenericReader { public static Func Read { get; set; } /// /// True if this type has a custom writer. /// internal static bool HasCustomSerializer; public static void SetRead(Func value) { /* If a custom serializer has already been set then exit method * to not overwrite serializer. */ if (HasCustomSerializer) return; bool isGenerated = value.Method.Name.StartsWith(UtilityConstants.GeneratedReaderPrefix); //If not generated then unset any generated delta serializer. if (!isGenerated && GenericDeltaReader.HasCustomSerializer) GenericDeltaReader.Read = null; //Set has custom serializer if value being used is not a generated method. HasCustomSerializer = !isGenerated; Read = value; } } }