Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - Normal libraries
- - DataProtectorExtensions
- - Protect(this IDataProtector protector, ISecret secret) : byte[]
- - CollectionExtensions
- - ToDictionary<TKey,TValue>(this IEnumerable<KeyValuePair<TKey,TValue>> keyValuePairs) : Dictionary<TKey,TValue>
- - GetItemOrDefault<T>(this IReadOnlyList<T> list, int index, T? specifiedDefault) : T?
- - GetItemOrDefault<TItem,TValue>(this IReadOnlyList<TItem> list, int index, Func<TItem,TValue> selector, TValue? specifiedDefault) : TValue?
- - TryGetListItem(this IList list, int index, out object item) : bool
- - TryGetListItem<T>(this IList list, int index, out T item) : bool
- - GetListItemOrDefault(this IList list, int index, object? specifiedDefault) : object?
- - GetListItemOrDefault<T>(this IList list, int index, T? specifiedDefault) : T?
- - TryGetItem<T>(this IReadOnlyList<T> list, int index, out T item) : bool
- - TryFindIndex<T>(this IEnumerable<T> source, Func<T,bool> predicate, out int index) : bool
- - TryFindIndex<TItem,TParameter>(this IEnumerable<TItem> source, Func<TItem,TParameter,bool> predicate, TParameter parameter, out int index) : bool
- - FindIndex<T>(this IEnumerable<T> source, Func<T,bool> predicate) : int
- - FindIndex<TItem,TParameter>(this IEnumerable<TItem> source, Func<TItem,TParameter,bool> predicate, TParameter parameter) : int
- - TryGetFirst<T>(this IEnumerable<T> collection, Func<T,bool> predicate, out T? result) : bool
- - TryGetFirst<TElement,TArgument>(this IEnumerable<TElement> collection, Func<TElement,TArgument,bool> predicate, TArgument argument, out TElement? result) : bool
- - FirstOrDefault<T>(this IReadOnlyList<T> collection) : T?
- - FirstOrDefault<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : TItem?
- - FirstOrNull<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : TItem?
- - Count<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : int
- - RemoveWhere<T>(this ICollection<T> list, Func<T,bool> predicate) : void
- - RemoveWhere<TItem>(this IList<TItem> list, Func<TItem,bool> predicate) : void
- - RemoveWhere<TItem,TArgument>(this IList<TItem> list, Func<TItem,TArgument,bool> predicate, TArgument argument) : void
- - RemoveWhere<TItem,TArgument>(this ICollection<TItem> list, Func<TItem,TArgument,bool> predicate, TArgument argument) : void
- - ResetWith<T>(this ICollection<T> collection, IEnumerable<T> items) : void
- - WhereNotNull<T>(this IEnumerable<T?> items) : IEnumerable<T>
- - Select<TKey,TValue,TResult>(this IEnumerable<KeyValuePair<TKey,TValue>> source, Func<TKey,TValue,TResult> selector) : IEnumerable<TResult>
- - Select<TKey,TValue,TArg,TResult>(this IEnumerable<KeyValuePair<TKey,TValue>> source, Func<TKey,TValue,TArg,TResult> selector, TArg argument) : IEnumerable<TResult>
- - Select<TSource,TResult,TParam>(this IEnumerable<TSource> source, Func<TSource,int,TParam,TResult> selector, TParam parameter) : IEnumerable<TResult>
- - Aggregate<TSource,TAccumulate,TParam>(this IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate,TSource,TParam,TAccumulate> func, TParam parameter) : TAccumulate
- - GetOrAddAndSetActive<TKey,TValue>(this IKeyedCollection<TKey,TValue> dictionary, TKey key, Func<TKey,TValue> valueFactory) : TValue
- - GetOrAddAndSetActive<TKey,TValue,TArg>(this IKeyedCollection<TKey,TValue> dictionary, TKey key, Func<TKey,TArg,TValue> valueFactory, TArg factoryArgument) : TValue
- - GetOrAddAndSetActive<TKey,TValue>(this IKeyedCollection<TKey,TValue> dictionary, TKey key, TValue value) : TValue
- - GetValues<TKey,TValue>(this IReadOnlyDictionary<TKey,TValue> dictionary, IEnumerable<TKey> keys) : IEnumerable<TValue>
- - GetValues<TKey,TValue>(this IDictionary<TKey,TValue> dictionary, IEnumerable<TKey> keys) : IEnumerable<TValue>
- - GetValues<TKey,TValue>(this IKeyedCollection<TKey,TValue> dictionary, IEnumerable<TKey> keys) : IEnumerable<TValue>
- - GetValues<TKey,TValue>(this IReadOnlyKeyedCollection<TKey,TValue> dictionary, IEnumerable<TKey> keys) : IEnumerable<TValue>
- - Unwrap<TComposite,TSingle>(this IEnumerable<TSingle> items) : IEnumerable<TSingle>
- - Select<TResult>(this IEnumerable source, Func<object,int,TResult> selector) : IEnumerable<TResult>
- - Select<TResult,TArg>(this IEnumerable source, Func<object,int,TArg,TResult> selector, TArg argument) : IEnumerable<TResult>
- - AddRange<T>(this ICollection<T> result, IEnumerable<T> items) : void
- - WhereNotInSet<T>(this IEnumerable<T> items, IReadOnlySet<T> set) : IEnumerable<T>
- - AddRange<T>(this ICollection<T> collection, IEnumerable<T> items) : void
- - RemoveRange<T>(this ICollection<T> collection, IEnumerable<T> items) : void
- - Deconstruct<TKey,TValue>(this IGrouping<TKey,TValue> grouping, out TKey key, out IEnumerable<TValue> items) : void
- - Deconstruct<TKey,TValue>(this IAsyncGrouping<TKey,TValue> grouping, out TKey key, out IAsyncEnumerable<TValue> items) : void
- - WhereNotNull<T>(this IEnumerable<T?> source) : IEnumerable<T>
- - WhereNotNull<T>(this IEnumerable<T?> source) : IEnumerable<T>
- - SelectMany<TSource,TResult,TParam>(this IEnumerable<TSource> source, Func<TSource,TParam,IEnumerable<TResult>> selector, TParam parameter) : IEnumerable<TResult>
- - Select<TSource,TResult,TParam>(this IEnumerable<TSource> source, Func<TSource,TParam,TResult> selector, TParam parameter) : IEnumerable<TResult>
- - Select<TSource,TResult,TParam>(this IAsyncEnumerable<TSource> source, Func<TSource,TParam,TResult> selector, TParam parameter, CancellationToken cancellationToken) : IAsyncEnumerable<TResult>
- - FirstOrNull<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : TItem?
- - FirstOrDefault<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : TItem?
- - Where<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : IEnumerable<TItem>
- - Any<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : bool
- - All<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : bool
- - ExpressionExtensions
- - GetMemberName<T>(this Expression<T> expression) : string
- - GetMemberDisplayAttribute<T>(this Expression<T> expression) : DisplayAttribute?
- - GetMemberDescriptionAttribute<T>(this Expression<T> expression) : DescriptionAttribute?
- - GetMember<T>(this Expression<T> expression) : MemberInfo
- - FileInfoExtensions
- - ReadAllTextAsync(this IFileInfo fileInfo) : Task<string>
- - GetFileSystemInfo(this IFileInfo? fileInfo, bool requireExisting) : FileSystemInfo?
- - GetFileInfo(this IFileInfo? fileInfo, bool requireExisting) : FileInfo?
- - GetDirectoryInfo(this IFileInfo? fileInfo, bool requireExisting) : DirectoryInfo?
- - FormatExtensions
- - GetNumericListSeparator(this IFormatProvider? provider) : char
- - HashCodeExtensions
- - With<T>(this HashCode hashCode, T value) : HashCode
- - With<T>(this HashCode hashCode, T value, IEqualityComparer<T> comparer) : HashCode
- - JsonExtensions
- - Deconstruct(this JsonProperty property, out string name, out JsonElement value) : void
- - ToJsonNode<T>(this JsonElement element, T undefinedValue, JsonNodeOptions? options) : JsonNode?
- - ToJsonNode(this JsonElement element, JsonNodeOptions? options) : JsonNode?
- - CreateJsonNode<T>(JsonElement element, JsonNodeOptions? options, T? undefinedValue) : JsonNode?
- - GetWriterOptions(this JsonSerializerOptions opt) : JsonWriterOptions
- - GetReaderOptions(this JsonSerializerOptions opt) : JsonReaderOptions
- - GetJsonDocumentOptions(this JsonSerializerOptions opt) : JsonDocumentOptions
- - GetNodeOptions(this JsonSerializerOptions opt) : JsonNodeOptions
- - GetPropertyNameStringComparison(this JsonSerializerOptions? opt) : StringComparison
- - ContainsKey(this JsonObject element, string propertyName, JsonNamingPolicy? namingPolicy) : bool
- - GetPropertyValue(this JsonObject element, string propertyName, JsonNamingPolicy? opt) : JsonNode?
- - GetPropertyValue<T>(this JsonObject element, string propertyName, JsonNamingPolicy? opt) : T?
- - TryGetPropertyValue(this JsonObject element, string propertyName, JsonNamingPolicy? namingPolicy, out JsonNode? result) : bool
- - TryGetPropertyValue<T>(this JsonObject element, string propertyName, JsonNamingPolicy? namingPolicy, out T? result) : bool
- - GetProperty(this JsonElement element, string propertyName, JsonSerializerOptions? opt) : JsonElement
- - TryGetProperty(this JsonElement element, string propertyName, JsonSerializerOptions? opt, out JsonElement result) : bool
- - TryGetProperty(this JsonElement element, string propertyName, StringComparison comparison, JsonNamingPolicy? namingPolicy, out JsonElement result) : bool
- - ConvertNameOrDefault(this JsonNamingPolicy? namingPolicy, string propertyName) : string
- - GetValueAsEnum<T>(this JsonValue? node, T specifiedDefault) : T
- - TryGetValueAsEnum<T>(this JsonValue? node, out T result) : bool
- - NotifyExtensions
- - WithCanExecuteChangedHandler<TNotify>(this TNotify? notify, EventHandler<EventArgs> handler) : TNotify?
- - WithoutCanExecuteChangedHandler<TNotify>(this TNotify? notify, EventHandler<EventArgs> handler) : TNotify?
- - PropertyChangedHandler(this INotifyPropertyChanged? notify, bool add, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : void
- - AddPropertyChangedHandler(this INotifyPropertyChanged? notify, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : void
- - RemovePropertyChangedHandler(this INotifyPropertyChanged? notify, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : void
- - WithPropertyChangedHandler<TNotify>(this TNotify? notify, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : TNotify?
- - WithoutPropertyChangedHandler<TNotify>(this TNotify? notify, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : TNotify?
- - CollectionChangedHandler(this INotifyCollectionChanged? notify, bool add, EventHandler<NotifyCollectionChangedEventArgs> handler) : void
- - AddErrorsChangedHandler<TNotify>(this TNotify? notify, EventHandler<DataErrorsChangedEventArgs> handler) : void
- - RemoveErrorsChangedHandler<TNotify>(this TNotify? notify, EventHandler<DataErrorsChangedEventArgs> handler) : void
- - AddCollectionChangedHandler(this INotifyCollectionChanged? notify, EventHandler<NotifyCollectionChangedEventArgs> handler) : void
- - RemoveCollectionChangedHandler(this INotifyCollectionChanged? notify, EventHandler<NotifyCollectionChangedEventArgs> handler) : void
- - WithCollectionChangedHandler<TNotify>(this TNotify? notify, EventHandler<NotifyCollectionChangedEventArgs> handler) : TNotify?
- - WithoutCollectionChangedHandler<TNotify>(this TNotify? notify, EventHandler<NotifyCollectionChangedEventArgs> handler) : TNotify?
- - NumericExtensions
- - IsInfinity(this double value) : bool
- - IsNotInfinity(this double value) : bool
- - IsNaN(this double value) : bool
- - IsNotNaN(this double value) : bool
- - ObjectExtensions
- - Box<T>(this T obj) : object
- - As<T>(this object? value, T? defaultValue) : T?
- - Is<T>(this object? value, out T? result) : bool
- - IsNotNull<T>(this T? value, out T result) : bool
- - TryImplicitConversionToInteger(this object? value, out int result) : bool
- - TryImplicitConversionToDouble(this object? value, out double result) : bool
- - TryImplicitConversionToDecimal(this object? value, out decimal result) : bool
- - OptionsExtensions
- - OnChangeAndNotEqual<TOptions>(this IOptionsMonitor<TOptions> options, OnOptionsValueChanged<TOptions> listener) : IDisposable
- - OnChangeAndNotEqual<TOptions>(this IOptionsMonitor<TOptions> options, OnOptionsValueChanged<TOptions> listener, IEqualityComparer<TOptions> comparer) : IDisposable
- - PhysicalFileProviderExtensions
- - CreateWatchableFile(this PhysicalFileProvider fileProvider, string subPath) : WatchablePhysicalFile?
- - TryCreateWatchableFile(this PhysicalFileProvider fileProvider, string subPath, IMessenger? messenger, out WatchablePhysicalFile? result) : bool
- - ProgressExtensions
- - ReportAndReturn<TProgress,TMessage>(this IProgress<TProgress> progress, TMessage message) : TMessage
- - LogInformation(this IProgress<IReportItem> progress, string description, Exception? exception, TimeSpan elapsedTime) : void
- - LogError(this IProgress<IReportItem> progress, string description, Exception? exception, TimeSpan elapsedTime) : void
- - ServiceProviderExtensions
- - TryGetService<T>(this IServiceProvider serviceProvider, out T? service) : bool
- - SpanExtensions
- - Count<T>(this ReadOnlySpan<T> span, Func<T,bool> predicate) : int
- - CountWhile<T>(this ReadOnlySpan<T> span, Func<T,bool> predicate) : int
- - CountUntil<T>(this ReadOnlySpan<T> span, Func<T,bool> predicate) : int
- - StringExtensions
- - SpaceByPascalCasing(this string text) : string
- - SpaceByPascalCasing(this ReadOnlySpan<char> text) : string
- - HasInvalidPathChars(this string path) : bool
- - IsNullOrWhiteSpace(this string? text) : bool
- - IsNullOrEmpty(this string? text) : bool
- - IsNotNullOrWhiteSpace(this string? text) : bool
- - IsNotNullOrEmpty(this string? text) : bool
- - IsEmptyOrWhiteSpace(this ReadOnlySpan<char> text) : bool
- - IsEmptyOrWhiteSpace(this Span<char> text) : bool
- - GetFileInfo(this string? filePath, bool requireExisting) : FileInfo?
- - GetDirectoryInfo(this string? filePath, bool requireExisting) : DirectoryInfo?
- - TryGetFileInfo(this string? filePath, out FileInfo? fileInfo) : bool
- - TryGetDirectoryInfo(this string? filePath, out DirectoryInfo? directoryInfo) : bool
- - TryGetFileInfo(this string? filePath, bool requireExisting, out FileInfo? fileInfo) : bool
- - TryGetDirectoryInfo(this string? filePath, bool requireExisting, out DirectoryInfo? directoryInfo) : bool
- - TryGetExistingFileSystemInfo(this string? filePath, out FileSystemInfo? fileSystemInfo) : bool
- - TaskExtensions
- - CompletedTaskIfNull(this Task? task) : Task
- - WithTimeout(this CancellationToken cancellationToken, TimeSpan timeSpan) : CancellationTokenSource
- - UriExtensions
- - LaunchUri(this Uri uri) : void
- - ValidationExtensions
- - GetMemberNames(this ValidationContext context) : IEnumerable<string>?
- - ImmutableExtensions
- - Change<TKey,TValue>(this ImmutableDictionary<TKey,TValue> dictionary, TryChangeItem<TKey,TValue> tryChangeItem) : ImmutableDictionary<TKey,TValue>
- - Change<TKey,TValue>(this ImmutableDictionary<TKey,TValue> dictionary, TryChangeItem<TKey,TValue> tryChangeItem, out bool changed) : ImmutableDictionary<TKey,TValue>
- - Change<TKey,TValue,TArg>(this ImmutableDictionary<TKey,TValue> dictionary, TryChangeItem<TKey,TValue,TArg> tryChangeItem, TArg argument) : ImmutableDictionary<TKey,TValue>
- - Change<TKey,TValue,TArg>(this ImmutableDictionary<TKey,TValue> dictionary, TryChangeItem<TKey,TValue,TArg> tryChangeItem, TArg argument, out bool changed) : ImmutableDictionary<TKey,TValue>
- - Change<TKey,TValue>(this ImmutableDictionary<TKey,TValue> dictionary, ChangeItem<TKey,TValue> tryChangeItem) : ImmutableDictionary<TKey,TValue>
- - Change<TKey,TValue,TArg>(this ImmutableDictionary<TKey,TValue> dictionary, ChangeItem<TKey,TValue,TArg> tryChangeItem, TArg argument) : ImmutableDictionary<TKey,TValue>
- - ReflectionExtensions
- - TryGetCustomAttribute<T>(this MemberInfo? type, out T? attribute) : bool
- - TryGetCustomAttribute<T>(this Type? type, ConcurrentDictionary<Type,T?> cache, out T? attribute) : bool
- - IsAssignableToGenericType(this Type givenType, Type openGenericType) : bool
- - IsAssignableToGenericType(this Type givenType, Type openGenericType, out Type[] genericArguments) : bool
- - IsAssignableToGenericType(this Type givenType, Type openGenericType, out Type[] genericArguments, out Type? closedType) : bool
- - CommunityToolkit.Mvvm
- - MessengerExtensions
- - ReplyIfNotNull<T>(this RecordRequestMessage<T> message, T? reply) : void
- - ReplyIfNotNull<T>(this RequestMessage<T> message, T? reply) : void
- - RegisterForSender<TRecipient,TSender,TMessage>(this IMessenger messenger, TRecipient recipient, TSender sender, MessageHandler<TRecipient,TMessage> handler) : void
- - RegisterAsSender<TRecipient,TMessage>(this IMessenger messenger, TRecipient recipient, MessageHandler<TRecipient,TMessage> handler) : void
- - RegisterAsSender<TRecipient,TMessage,TToken>(this IMessenger messenger, TRecipient recipient, TToken token, MessageHandler<TRecipient,TMessage> handler) : void
- - SenderHandler<TRecipient,TSender,TMessage>(MessageHandler<TRecipient,TMessage> handler, Func<object?,TSender,bool> predicate, TSender desiredSender) : MessageHandler<TRecipient,TMessage>
- - RegisterAsync<TRecipient,TMessage,TToken>(this IMessenger messenger, TRecipient recipient, TToken token, Func<TRecipient,TMessage,Task> handler) : void
- - Register<TRecipient,TMessage,TToken>(this IMessenger messenger, TRecipient recipient, TToken token, MessageHandler<TRecipient,TMessage,TToken> handler) : void
- - TryGetValue<T>(this RecordRequestMessage<T> message, out T response) : bool
- - WPF
- - BehaviorExtensions
- - AddAndReturn<TBehavior>(this TBehavior behavior, BehaviorCollection behaviors) : TBehavior
- - GetFirstBehaviorOrNull<TControl,TBehavior>(this TControl control) : TBehavior?
- - TryGetFirstBehaviorOrNull<TBehavior>(this DependencyObject control, out BehaviorCollection behaviors, out TBehavior? result) : bool
- - GetFirstBehaviorOrAdd<TBehavior>(this DependencyObject control) : TBehavior
- - GetFirstBehaviorOrAdd<TControl,TBehavior>(this TControl control) : TBehavior
- - GetFirstBehaviorOrAdd<TControl,TBehavior>(this TControl control, Func<TControl,TBehavior> factory) : TBehavior
- - GetFirstBehaviorOrAdd<TControl,TBehavior,TArg>(this TControl control, Func<TControl,TArg,TBehavior> factory, TArg argument) : TBehavior
- - RemoveBehaviors<TBehavior>(this DependencyObject? control) : void
- - AddTo<TBehavior,TControl>(this TBehavior? behavior, TControl? control) : void
- - AddTo(this Behavior? behavior, DependencyObject? control) : void
- - RemoveFrom<TBehavior,TControl>(this TBehavior? behavior, TControl? control) : void
- - RemoveFrom(this Behavior? behavior, DependencyObject? control) : void
- - BindingExtensions
- - Clone(this BindingBase bindingBase, object? source) : BindingBase
- - Clone(this Binding binding, object? source) : Binding
- - CloneSource(Binding destination, Binding sourceBinding, object? newSource) : void
- - Clone(this MultiBinding multiBinding, object? source) : MultiBinding
- - Clone(this PriorityBinding priorityBinding, object? source) : BindingBase
- - AddRangeClone(this ICollection<BindingBase> result, IEnumerable<BindingBase> other, object? source) : void
- - Evaluate<T>(this BindingBase binding, DependencyObject? target) : T?
- - Evaluate(this BindingBase binding, DependencyObject? target) : object?
- - CommandExtensions
- - CanExecute(this ICommand? command, object? parameter, IInputElement? target) : bool
- - Execute(this ICommand? command, object? parameter, IInputElement? target) : void
- - NotifyCanExecuteChanged(this ICommand? command) : void
- - CreateBinding(this ICommand command, ExecutedRoutedEventHandler? execute, CanExecuteRoutedEventHandler? canExecute, ExecutedRoutedEventHandler? previewExecute, CanExecuteRoutedEventHandler? previewCanExecute) : CommandBinding
- - RemoveBinding(this CommandBindingCollection commandBindings, ICommand command) : void
- - CanExecuteChangedHandler(this ICommand? notify, bool add, EventHandler<EventArgs> handler) : void
- - AddCanExecuteChangedHandler(this ICommand? notify, EventHandler<EventArgs> handler) : void
- - RemoveCanExecuteChangedHandler(this ICommand? notify, EventHandler<EventArgs> handler) : void
- - DataErrorExtensions
- - PropertyHasErrors(this INotifyDataErrorInfo notify, string propertyName) : bool
- - DependencyObjectExtensions
- - GetValue<T>(this DependencyObject dependencyObject, DependencyProperty property) : T?
- - SetValue<T>(this DependencyObject dependencyObject, DependencyProperty property, T? value) : T?
- - GetValue<T>(this DependencyObject dependencyObject, DependencyPropertyKey property) : T?
- - SetValue<T>(this DependencyObject dependencyObject, DependencyPropertyKey property, T? value) : T?
- - SetCurrentValue<T>(this DependencyObject dependencyObject, DependencyProperty property, T? value) : T?
- - SetProperty<TControl,TValue>(this TControl? control, TValue value, Action<TControl,TValue> setter) : void
- - SetField<TControl,TField>(this TControl control, ref TField field, TField value, Action<TControl,TField,bool> subscribeUnsubscribe) : void
- - SetField<TControl,TField>(this TControl control, ref TField? field, TField? value, Action<TControl,TField> subscribe, Action<TControl,TField> unsubscribe) : void
- - WireEvent<TControl,THandler>(this TControl? control, THandler handler, Action<TControl,THandler,bool> subUnsub, bool subscribe) : void
- - WireEvent<TControl>(this TControl? control, RoutedEventHandler handler, Action<TControl,RoutedEventHandler> subscriber, Action<TControl,RoutedEventHandler> unsubscriber, bool subscribe) : void
- - WireEvent<TControl,THandler>(this TControl? control, THandler handler, Action<TControl,THandler> subscriber, Action<TControl,THandler> unsubscriber, bool subscribe) : void
- - WireEvent<TControl>(this TControl? control, RoutedEventHandler handler, Func<bool,Action<TControl,RoutedEventHandler>> getAction, bool subscribe) : void
- - WireEvent<TControl>(this TControl? control, RoutedEventHandler handler, Action<TControl,RoutedEventHandler> action) : void
- - WireEvent<TControl,THandler>(this TControl? control, THandler handler, Action<TControl,THandler> action) : void
- - EventArgsExtensions
- - GetCommandParameterFromAnySource<TResult>(this RoutedEventArgs args, object? sender) : TResult?
- - GetCommandParameterFromAnySource<TResult>(this ExecutedRoutedEventArgs args, object? sender) : TResult?
- - GetCommandParameterFromAnySource<TResult>(this CanExecuteRoutedEventArgs args, object? sender) : TResult?
- - FreezableExtensions
- - CloneIfNotFrozen<T>(this T? freezable) : T?
- - ItemsControlExtensions
- - CreateGetItemsHostLambda() : Func<ItemsControl,Panel?>
- - GetItemsPanel(this ItemsControl itemsControl) : Panel?
- - GetItemContainer(this ItemsControl itemsControl, object value) : DependencyObject
- - GetItemContainer<TContainer>(this ItemsControl itemsControl, object value) : TContainer?
- - GetItemContainerFromIndex(this ItemsControl itemsControl, int index) : DependencyObject
- - GetItemContainerFromIndex<TContainer>(this ItemsControl itemsControl, int index) : TContainer?
- - TryGetItemContainer<TContainer>(this ItemsControl itemsControl, object value, out TContainer? itemContainer) : bool
- - TryFindItemsPresenter(this ItemsControl? container, out ItemsPresenter? itemsPresenter) : bool
- - LogicalTreeExtensions
- - GetLogicalAncestors(this DependencyObject? current) : IEnumerable<DependencyObject>
- - TryGetParent(DependencyObject? current, out DependencyObject? parent) : bool
- - GetParent(DependencyObject? current) : DependencyObject?
- - TemplateExtensions
- - FindName<T>(this FrameworkTemplate? template, string name, FrameworkElement templatedParent) : T?
- - TryFindName<T>(this FrameworkTemplate? template, string name, FrameworkElement templatedParent, out T? result) : bool
- - VisualTreeExtensions
- - GetVisualChildren(this DependencyObject? parent) : VisualChildrenEnumerator
- - GetVisualAncestors<T>(this DependencyObject? node) : VisualAncestorEnumerator<T>
- - GetVisualAncestors(this DependencyObject? node) : VisualAncestorEnumerator<DependencyObject>
- - FindVisualAncestor(this DependencyObject? current) : DependencyObject?
- - TryFindVisualAncestor<T,TArg>(this DependencyObject? current, Func<T,TArg,bool>? predicate, TArg argument, out T? ancestor) : bool
- - TryFindVisualAncestor<T>(this DependencyObject? current, out T? ancestor) : bool
- - TryFindVisualAncestor<T>(this DependencyObject? current, T lookupItem, out T? ancestor) : bool
- - TryFindVisualAncestor<T>(this DependencyObject? current, string? parentName, out T? ancestor) : bool
- - FindVisualAncestor<T>(this DependencyObject? current) : T?
- - FindVisualAncestor<T>(this DependencyObject? current, T lookupItem) : T?
- - TryFindVisualAncestor<T>(this DependencyObject current, string parentName) : T?
- - TryFindVisualChild<T,TArg>(this DependencyObject? parent, Func<T,TArg,bool>? predicate, TArg argument, out T? foundChild) : bool
- - TryFindVisualChild<T>(this DependencyObject? parent, out T? foundChild) : bool
- - TryFindVisualChild<T>(this DependencyObject? current, string? parentName, out T? ancestor) : bool
- - GetVisualChild(this DependencyObject? parent, int index) : DependencyObject?
- - GetVisualChild<T>(this DependencyObject? parent, int index) : T?
- - TryGetVisualChild(this DependencyObject? parent, int index, out object? result) : bool
- - TryGetVisualChild<T>(this DependencyObject? parent, int index, out T? result) : bool
- - FindVisualChild<T>(this DependencyObject? parent) : T?
- - FindVisualChild<T>(this DependencyObject? parent, string name) : T?
- - WindowExtensions
- - ShowMessageBox(this Window? owner, string messageBoxText, string caption, MessageBoxButton button, MessageBoxImage icon, MessageBoxResult defaultResult) : MessageBoxResult
- - ObjectExtensions
- - CreateUiElement(this object? value, Brush? foregroundBrush, bool useContentPresenter) : UIElement?
- - CreateSvgAwesome(this EFontAwesomeIcon icon, Brush? foregroundBrush) : SvgAwesome?
- - CreatePackIcon(this PackIconKind icon, Brush? foregroundBrush) : PackIcon?
- - PropertyPathExtensions
- - Evaluate<T>(this PropertyPath path, object? source, T? specifiedDefault) : T?
- - Evaluate(this PropertyPath path, object? source) : object?
- - SizeExtensions
- - Deconstruct(this Size size, out double width, out double height) : void
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement