11 instantiations of NavigationOptions
Aspire.Dashboard (4)
Microsoft.AspNetCore.Components (2)
Microsoft.AspNetCore.Components.Web (1)
Microsoft.AspNetCore.Components.WebAssembly.Authentication (4)
53 references to NavigationOptions
Microsoft.AspNetCore.Components (6)
Microsoft.AspNetCore.Components.Endpoints (1)
Microsoft.AspNetCore.Components.Server (3)
Microsoft.AspNetCore.Components.Web (37)
_generated\3\WebRendererSerializerContext.NavigationOptions.g.cs (35)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.NavigationOptions>? _NavigationOptions;
19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.NavigationOptions> NavigationOptions
22get => _NavigationOptions ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.NavigationOptions>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Components.NavigationOptions));
25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.NavigationOptions> Create_NavigationOptions(global::System.Text.Json.JsonSerializerOptions options)
27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Components.NavigationOptions>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.NavigationOptions> jsonTypeInfo))
29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Components.NavigationOptions>
35ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.NavigationOptions).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null),
41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Components.NavigationOptions>(options, objectInfo);
58DeclaringType = typeof(global::Microsoft.AspNetCore.Components.NavigationOptions),
60Getter = static obj => ((global::Microsoft.AspNetCore.Components.NavigationOptions)obj).ForceLoad,
61Setter = static (obj, value) => __set_NavigationOptions_ForceLoad(ref global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.NavigationOptions>(obj), value!),
68AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.NavigationOptions).GetProperty("ForceLoad", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null),
78DeclaringType = typeof(global::Microsoft.AspNetCore.Components.NavigationOptions),
80Getter = static obj => ((global::Microsoft.AspNetCore.Components.NavigationOptions)obj).ReplaceHistoryEntry,
81Setter = static (obj, value) => __set_NavigationOptions_ReplaceHistoryEntry(ref global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.NavigationOptions>(obj), value!),
88AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.NavigationOptions).GetProperty("ReplaceHistoryEntry", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null),
98DeclaringType = typeof(global::Microsoft.AspNetCore.Components.NavigationOptions),
100Getter = static obj => ((global::Microsoft.AspNetCore.Components.NavigationOptions)obj).HistoryEntryState,
101Setter = static (obj, value) => __set_NavigationOptions_HistoryEntryState(ref global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.NavigationOptions>(obj), value!),
108AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.NavigationOptions).GetProperty("HistoryEntryState", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
118DeclaringType = typeof(global::Microsoft.AspNetCore.Components.NavigationOptions),
120Getter = static obj => ((global::Microsoft.AspNetCore.Components.NavigationOptions)obj).RelativeToCurrentUri,
121Setter = static (obj, value) => __set_NavigationOptions_RelativeToCurrentUri(ref global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.Components.NavigationOptions>(obj), value!),
128AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.NavigationOptions).GetProperty("RelativeToCurrentUri", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null),
138private void NavigationOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.NavigationOptions value)
142writer.WriteBoolean(PropName_ForceLoad, ((global::Microsoft.AspNetCore.Components.NavigationOptions)value).ForceLoad);
143writer.WriteBoolean(PropName_ReplaceHistoryEntry, ((global::Microsoft.AspNetCore.Components.NavigationOptions)value).ReplaceHistoryEntry);
144writer.WriteString(PropName_HistoryEntryState, ((global::Microsoft.AspNetCore.Components.NavigationOptions)value).HistoryEntryState);
145writer.WriteBoolean(PropName_RelativeToCurrentUri, ((global::Microsoft.AspNetCore.Components.NavigationOptions)value).RelativeToCurrentUri);
151private static extern void __set_NavigationOptions_ForceLoad(ref global::Microsoft.AspNetCore.Components.NavigationOptions obj, bool value);
153private static extern void __set_NavigationOptions_ReplaceHistoryEntry(ref global::Microsoft.AspNetCore.Components.NavigationOptions obj, bool value);
155private static extern void __set_NavigationOptions_HistoryEntryState(ref global::Microsoft.AspNetCore.Components.NavigationOptions obj, string value);
157private static extern void __set_NavigationOptions_RelativeToCurrentUri(ref global::Microsoft.AspNetCore.Components.NavigationOptions obj, bool value);
Microsoft.AspNetCore.Components.WebAssembly (2)
Microsoft.AspNetCore.Components.WebAssembly.Authentication (1)
Microsoft.AspNetCore.Components.WebView (3)