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