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