4 implementations of FullTypeName
Microsoft.AspNetCore.Components (2)
PersistentState\PersistentServiceRegistration.cs (1)
12
public string
FullTypeName
=> typeof(TService).FullName!;
PersistentState\PersistentServicesRegistry.cs (1)
248
public string
FullTypeName
{ get; set; } = "";
Microsoft.AspNetCore.Components.Tests (2)
PersistentState\ComponentStatePersistenceManagerTest.cs (1)
530
public string
FullTypeName
{ get; set; }
PersistentState\PersistentServicesRegistryTest.cs (1)
650
public string
FullTypeName
{ get; set; }
5 references to FullTypeName
Microsoft.AspNetCore.Components (3)
PersistentState\PersistentServicesRegistry.cs (3)
145
internal static IPersistentServiceRegistration[] ResolveRegistrations(IEnumerable<IPersistentServiceRegistration> registrations) => [.. registrations.DistinctBy(r => (r.Assembly, r.
FullTypeName
)).OrderBy(r => r.Assembly).ThenBy(r => r.
FullTypeName
)];
154
var fullTypeName = registration.
FullTypeName
;
Microsoft.AspNetCore.Components.Tests (2)
PersistentState\PersistentServicesRegistryTest.cs (2)
283
Assert.Contains(registrations, r => r.Assembly == "Assembly1" && r.
FullTypeName
== "Type1");
284
Assert.Contains(registrations, r => r.Assembly == "Assembly2" && r.
FullTypeName
== "Type2");