2 implementations of FullTypeName
Microsoft.AspNetCore.Components (2)
PersistentState\PersistentServiceRegistration.cs (1)
12public string FullTypeName => typeof(TService).FullName!;
PersistentState\PersistentServicesRegistry.cs (1)
231public string FullTypeName { get; set; } = "";
3 references to FullTypeName
Microsoft.AspNetCore.Components (3)
PersistentState\PersistentServicesRegistry.cs (3)
142internal static IPersistentServiceRegistration[] ResolveRegistrations(IEnumerable<IPersistentServiceRegistration> registrations) => [.. registrations.DistinctBy(r => (r.Assembly, r.FullTypeName)).OrderBy(r => r.Assembly).ThenBy(r => r.FullTypeName)]; 151var fullTypeName = registration.FullTypeName;