2 implementations of Assembly
Microsoft.AspNetCore.Components (2)
PersistentState\PersistentServiceRegistration.cs (1)
11
public string
Assembly
=> typeof(TService).Assembly.GetName().Name!;
PersistentState\PersistentServicesRegistry.cs (1)
229
public string
Assembly
{ get; set; } = "";
3 references to Assembly
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)];
150
var assembly = registration.
Assembly
;