Advertisement
Guest User

Untitled

a guest
May 31st, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.25 KB | None | 0 0
  1. - Normal libraries
  2. - DataProtectorExtensions
  3. - Protect(this IDataProtector protector, ISecret secret) : byte[]
  4. - CollectionExtensions
  5. - ToDictionary<TKey,TValue>(this IEnumerable<KeyValuePair<TKey,TValue>> keyValuePairs) : Dictionary<TKey,TValue>
  6. - GetItemOrDefault<T>(this IReadOnlyList<T> list, int index, T? specifiedDefault) : T?
  7. - GetItemOrDefault<TItem,TValue>(this IReadOnlyList<TItem> list, int index, Func<TItem,TValue> selector, TValue? specifiedDefault) : TValue?
  8. - TryGetListItem(this IList list, int index, out object item) : bool
  9. - TryGetListItem<T>(this IList list, int index, out T item) : bool
  10. - GetListItemOrDefault(this IList list, int index, object? specifiedDefault) : object?
  11. - GetListItemOrDefault<T>(this IList list, int index, T? specifiedDefault) : T?
  12. - TryGetItem<T>(this IReadOnlyList<T> list, int index, out T item) : bool
  13. - TryFindIndex<T>(this IEnumerable<T> source, Func<T,bool> predicate, out int index) : bool
  14. - TryFindIndex<TItem,TParameter>(this IEnumerable<TItem> source, Func<TItem,TParameter,bool> predicate, TParameter parameter, out int index) : bool
  15. - FindIndex<T>(this IEnumerable<T> source, Func<T,bool> predicate) : int
  16. - FindIndex<TItem,TParameter>(this IEnumerable<TItem> source, Func<TItem,TParameter,bool> predicate, TParameter parameter) : int
  17. - TryGetFirst<T>(this IEnumerable<T> collection, Func<T,bool> predicate, out T? result) : bool
  18. - TryGetFirst<TElement,TArgument>(this IEnumerable<TElement> collection, Func<TElement,TArgument,bool> predicate, TArgument argument, out TElement? result) : bool
  19. - FirstOrDefault<T>(this IReadOnlyList<T> collection) : T?
  20. - FirstOrDefault<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : TItem?
  21. - FirstOrNull<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : TItem?
  22. - Count<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : int
  23. - RemoveWhere<T>(this ICollection<T> list, Func<T,bool> predicate) : void
  24. - RemoveWhere<TItem>(this IList<TItem> list, Func<TItem,bool> predicate) : void
  25. - RemoveWhere<TItem,TArgument>(this IList<TItem> list, Func<TItem,TArgument,bool> predicate, TArgument argument) : void
  26. - RemoveWhere<TItem,TArgument>(this ICollection<TItem> list, Func<TItem,TArgument,bool> predicate, TArgument argument) : void
  27. - ResetWith<T>(this ICollection<T> collection, IEnumerable<T> items) : void
  28. - WhereNotNull<T>(this IEnumerable<T?> items) : IEnumerable<T>
  29. - Select<TKey,TValue,TResult>(this IEnumerable<KeyValuePair<TKey,TValue>> source, Func<TKey,TValue,TResult> selector) : IEnumerable<TResult>
  30. - Select<TKey,TValue,TArg,TResult>(this IEnumerable<KeyValuePair<TKey,TValue>> source, Func<TKey,TValue,TArg,TResult> selector, TArg argument) : IEnumerable<TResult>
  31. - Select<TSource,TResult,TParam>(this IEnumerable<TSource> source, Func<TSource,int,TParam,TResult> selector, TParam parameter) : IEnumerable<TResult>
  32. - Aggregate<TSource,TAccumulate,TParam>(this IEnumerable<TSource> source, TAccumulate seed, Func<TAccumulate,TSource,TParam,TAccumulate> func, TParam parameter) : TAccumulate
  33. - GetOrAddAndSetActive<TKey,TValue>(this IKeyedCollection<TKey,TValue> dictionary, TKey key, Func<TKey,TValue> valueFactory) : TValue
  34. - GetOrAddAndSetActive<TKey,TValue,TArg>(this IKeyedCollection<TKey,TValue> dictionary, TKey key, Func<TKey,TArg,TValue> valueFactory, TArg factoryArgument) : TValue
  35. - GetOrAddAndSetActive<TKey,TValue>(this IKeyedCollection<TKey,TValue> dictionary, TKey key, TValue value) : TValue
  36. - GetValues<TKey,TValue>(this IReadOnlyDictionary<TKey,TValue> dictionary, IEnumerable<TKey> keys) : IEnumerable<TValue>
  37. - GetValues<TKey,TValue>(this IDictionary<TKey,TValue> dictionary, IEnumerable<TKey> keys) : IEnumerable<TValue>
  38. - GetValues<TKey,TValue>(this IKeyedCollection<TKey,TValue> dictionary, IEnumerable<TKey> keys) : IEnumerable<TValue>
  39. - GetValues<TKey,TValue>(this IReadOnlyKeyedCollection<TKey,TValue> dictionary, IEnumerable<TKey> keys) : IEnumerable<TValue>
  40. - Unwrap<TComposite,TSingle>(this IEnumerable<TSingle> items) : IEnumerable<TSingle>
  41. - Select<TResult>(this IEnumerable source, Func<object,int,TResult> selector) : IEnumerable<TResult>
  42. - Select<TResult,TArg>(this IEnumerable source, Func<object,int,TArg,TResult> selector, TArg argument) : IEnumerable<TResult>
  43. - AddRange<T>(this ICollection<T> result, IEnumerable<T> items) : void
  44. - WhereNotInSet<T>(this IEnumerable<T> items, IReadOnlySet<T> set) : IEnumerable<T>
  45. - AddRange<T>(this ICollection<T> collection, IEnumerable<T> items) : void
  46. - RemoveRange<T>(this ICollection<T> collection, IEnumerable<T> items) : void
  47. - Deconstruct<TKey,TValue>(this IGrouping<TKey,TValue> grouping, out TKey key, out IEnumerable<TValue> items) : void
  48. - Deconstruct<TKey,TValue>(this IAsyncGrouping<TKey,TValue> grouping, out TKey key, out IAsyncEnumerable<TValue> items) : void
  49. - WhereNotNull<T>(this IEnumerable<T?> source) : IEnumerable<T>
  50. - WhereNotNull<T>(this IEnumerable<T?> source) : IEnumerable<T>
  51. - SelectMany<TSource,TResult,TParam>(this IEnumerable<TSource> source, Func<TSource,TParam,IEnumerable<TResult>> selector, TParam parameter) : IEnumerable<TResult>
  52. - Select<TSource,TResult,TParam>(this IEnumerable<TSource> source, Func<TSource,TParam,TResult> selector, TParam parameter) : IEnumerable<TResult>
  53. - Select<TSource,TResult,TParam>(this IAsyncEnumerable<TSource> source, Func<TSource,TParam,TResult> selector, TParam parameter, CancellationToken cancellationToken) : IAsyncEnumerable<TResult>
  54. - FirstOrNull<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : TItem?
  55. - FirstOrDefault<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : TItem?
  56. - Where<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : IEnumerable<TItem>
  57. - Any<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : bool
  58. - All<TItem,TArgument>(this IEnumerable<TItem> source, Func<TItem,TArgument,bool> predicate, TArgument argument) : bool
  59. - ExpressionExtensions
  60. - GetMemberName<T>(this Expression<T> expression) : string
  61. - GetMemberDisplayAttribute<T>(this Expression<T> expression) : DisplayAttribute?
  62. - GetMemberDescriptionAttribute<T>(this Expression<T> expression) : DescriptionAttribute?
  63. - GetMember<T>(this Expression<T> expression) : MemberInfo
  64. - FileInfoExtensions
  65. - ReadAllTextAsync(this IFileInfo fileInfo) : Task<string>
  66. - GetFileSystemInfo(this IFileInfo? fileInfo, bool requireExisting) : FileSystemInfo?
  67. - GetFileInfo(this IFileInfo? fileInfo, bool requireExisting) : FileInfo?
  68. - GetDirectoryInfo(this IFileInfo? fileInfo, bool requireExisting) : DirectoryInfo?
  69. - FormatExtensions
  70. - GetNumericListSeparator(this IFormatProvider? provider) : char
  71. - HashCodeExtensions
  72. - With<T>(this HashCode hashCode, T value) : HashCode
  73. - With<T>(this HashCode hashCode, T value, IEqualityComparer<T> comparer) : HashCode
  74. - JsonExtensions
  75. - Deconstruct(this JsonProperty property, out string name, out JsonElement value) : void
  76. - ToJsonNode<T>(this JsonElement element, T undefinedValue, JsonNodeOptions? options) : JsonNode?
  77. - ToJsonNode(this JsonElement element, JsonNodeOptions? options) : JsonNode?
  78. - CreateJsonNode<T>(JsonElement element, JsonNodeOptions? options, T? undefinedValue) : JsonNode?
  79. - GetWriterOptions(this JsonSerializerOptions opt) : JsonWriterOptions
  80. - GetReaderOptions(this JsonSerializerOptions opt) : JsonReaderOptions
  81. - GetJsonDocumentOptions(this JsonSerializerOptions opt) : JsonDocumentOptions
  82. - GetNodeOptions(this JsonSerializerOptions opt) : JsonNodeOptions
  83. - GetPropertyNameStringComparison(this JsonSerializerOptions? opt) : StringComparison
  84. - ContainsKey(this JsonObject element, string propertyName, JsonNamingPolicy? namingPolicy) : bool
  85. - GetPropertyValue(this JsonObject element, string propertyName, JsonNamingPolicy? opt) : JsonNode?
  86. - GetPropertyValue<T>(this JsonObject element, string propertyName, JsonNamingPolicy? opt) : T?
  87. - TryGetPropertyValue(this JsonObject element, string propertyName, JsonNamingPolicy? namingPolicy, out JsonNode? result) : bool
  88. - TryGetPropertyValue<T>(this JsonObject element, string propertyName, JsonNamingPolicy? namingPolicy, out T? result) : bool
  89. - GetProperty(this JsonElement element, string propertyName, JsonSerializerOptions? opt) : JsonElement
  90. - TryGetProperty(this JsonElement element, string propertyName, JsonSerializerOptions? opt, out JsonElement result) : bool
  91. - TryGetProperty(this JsonElement element, string propertyName, StringComparison comparison, JsonNamingPolicy? namingPolicy, out JsonElement result) : bool
  92. - ConvertNameOrDefault(this JsonNamingPolicy? namingPolicy, string propertyName) : string
  93. - GetValueAsEnum<T>(this JsonValue? node, T specifiedDefault) : T
  94. - TryGetValueAsEnum<T>(this JsonValue? node, out T result) : bool
  95. - NotifyExtensions
  96. - WithCanExecuteChangedHandler<TNotify>(this TNotify? notify, EventHandler<EventArgs> handler) : TNotify?
  97. - WithoutCanExecuteChangedHandler<TNotify>(this TNotify? notify, EventHandler<EventArgs> handler) : TNotify?
  98. - PropertyChangedHandler(this INotifyPropertyChanged? notify, bool add, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : void
  99. - AddPropertyChangedHandler(this INotifyPropertyChanged? notify, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : void
  100. - RemovePropertyChangedHandler(this INotifyPropertyChanged? notify, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : void
  101. - WithPropertyChangedHandler<TNotify>(this TNotify? notify, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : TNotify?
  102. - WithoutPropertyChangedHandler<TNotify>(this TNotify? notify, EventHandler<PropertyChangedEventArgs> handler, string propertyName) : TNotify?
  103. - CollectionChangedHandler(this INotifyCollectionChanged? notify, bool add, EventHandler<NotifyCollectionChangedEventArgs> handler) : void
  104. - AddErrorsChangedHandler<TNotify>(this TNotify? notify, EventHandler<DataErrorsChangedEventArgs> handler) : void
  105. - RemoveErrorsChangedHandler<TNotify>(this TNotify? notify, EventHandler<DataErrorsChangedEventArgs> handler) : void
  106. - AddCollectionChangedHandler(this INotifyCollectionChanged? notify, EventHandler<NotifyCollectionChangedEventArgs> handler) : void
  107. - RemoveCollectionChangedHandler(this INotifyCollectionChanged? notify, EventHandler<NotifyCollectionChangedEventArgs> handler) : void
  108. - WithCollectionChangedHandler<TNotify>(this TNotify? notify, EventHandler<NotifyCollectionChangedEventArgs> handler) : TNotify?
  109. - WithoutCollectionChangedHandler<TNotify>(this TNotify? notify, EventHandler<NotifyCollectionChangedEventArgs> handler) : TNotify?
  110. - NumericExtensions
  111. - IsInfinity(this double value) : bool
  112. - IsNotInfinity(this double value) : bool
  113. - IsNaN(this double value) : bool
  114. - IsNotNaN(this double value) : bool
  115. - ObjectExtensions
  116. - Box<T>(this T obj) : object
  117. - As<T>(this object? value, T? defaultValue) : T?
  118. - Is<T>(this object? value, out T? result) : bool
  119. - IsNotNull<T>(this T? value, out T result) : bool
  120. - TryImplicitConversionToInteger(this object? value, out int result) : bool
  121. - TryImplicitConversionToDouble(this object? value, out double result) : bool
  122. - TryImplicitConversionToDecimal(this object? value, out decimal result) : bool
  123. - OptionsExtensions
  124. - OnChangeAndNotEqual<TOptions>(this IOptionsMonitor<TOptions> options, OnOptionsValueChanged<TOptions> listener) : IDisposable
  125. - OnChangeAndNotEqual<TOptions>(this IOptionsMonitor<TOptions> options, OnOptionsValueChanged<TOptions> listener, IEqualityComparer<TOptions> comparer) : IDisposable
  126. - PhysicalFileProviderExtensions
  127. - CreateWatchableFile(this PhysicalFileProvider fileProvider, string subPath) : WatchablePhysicalFile?
  128. - TryCreateWatchableFile(this PhysicalFileProvider fileProvider, string subPath, IMessenger? messenger, out WatchablePhysicalFile? result) : bool
  129. - ProgressExtensions
  130. - ReportAndReturn<TProgress,TMessage>(this IProgress<TProgress> progress, TMessage message) : TMessage
  131. - LogInformation(this IProgress<IReportItem> progress, string description, Exception? exception, TimeSpan elapsedTime) : void
  132. - LogError(this IProgress<IReportItem> progress, string description, Exception? exception, TimeSpan elapsedTime) : void
  133. - ServiceProviderExtensions
  134. - TryGetService<T>(this IServiceProvider serviceProvider, out T? service) : bool
  135. - SpanExtensions
  136. - Count<T>(this ReadOnlySpan<T> span, Func<T,bool> predicate) : int
  137. - CountWhile<T>(this ReadOnlySpan<T> span, Func<T,bool> predicate) : int
  138. - CountUntil<T>(this ReadOnlySpan<T> span, Func<T,bool> predicate) : int
  139. - StringExtensions
  140. - SpaceByPascalCasing(this string text) : string
  141. - SpaceByPascalCasing(this ReadOnlySpan<char> text) : string
  142. - HasInvalidPathChars(this string path) : bool
  143. - IsNullOrWhiteSpace(this string? text) : bool
  144. - IsNullOrEmpty(this string? text) : bool
  145. - IsNotNullOrWhiteSpace(this string? text) : bool
  146. - IsNotNullOrEmpty(this string? text) : bool
  147. - IsEmptyOrWhiteSpace(this ReadOnlySpan<char> text) : bool
  148. - IsEmptyOrWhiteSpace(this Span<char> text) : bool
  149. - GetFileInfo(this string? filePath, bool requireExisting) : FileInfo?
  150. - GetDirectoryInfo(this string? filePath, bool requireExisting) : DirectoryInfo?
  151. - TryGetFileInfo(this string? filePath, out FileInfo? fileInfo) : bool
  152. - TryGetDirectoryInfo(this string? filePath, out DirectoryInfo? directoryInfo) : bool
  153. - TryGetFileInfo(this string? filePath, bool requireExisting, out FileInfo? fileInfo) : bool
  154. - TryGetDirectoryInfo(this string? filePath, bool requireExisting, out DirectoryInfo? directoryInfo) : bool
  155. - TryGetExistingFileSystemInfo(this string? filePath, out FileSystemInfo? fileSystemInfo) : bool
  156. - TaskExtensions
  157. - CompletedTaskIfNull(this Task? task) : Task
  158. - WithTimeout(this CancellationToken cancellationToken, TimeSpan timeSpan) : CancellationTokenSource
  159. - UriExtensions
  160. - LaunchUri(this Uri uri) : void
  161. - ValidationExtensions
  162. - GetMemberNames(this ValidationContext context) : IEnumerable<string>?
  163. - ImmutableExtensions
  164. - Change<TKey,TValue>(this ImmutableDictionary<TKey,TValue> dictionary, TryChangeItem<TKey,TValue> tryChangeItem) : ImmutableDictionary<TKey,TValue>
  165. - Change<TKey,TValue>(this ImmutableDictionary<TKey,TValue> dictionary, TryChangeItem<TKey,TValue> tryChangeItem, out bool changed) : ImmutableDictionary<TKey,TValue>
  166. - Change<TKey,TValue,TArg>(this ImmutableDictionary<TKey,TValue> dictionary, TryChangeItem<TKey,TValue,TArg> tryChangeItem, TArg argument) : ImmutableDictionary<TKey,TValue>
  167. - Change<TKey,TValue,TArg>(this ImmutableDictionary<TKey,TValue> dictionary, TryChangeItem<TKey,TValue,TArg> tryChangeItem, TArg argument, out bool changed) : ImmutableDictionary<TKey,TValue>
  168. - Change<TKey,TValue>(this ImmutableDictionary<TKey,TValue> dictionary, ChangeItem<TKey,TValue> tryChangeItem) : ImmutableDictionary<TKey,TValue>
  169. - Change<TKey,TValue,TArg>(this ImmutableDictionary<TKey,TValue> dictionary, ChangeItem<TKey,TValue,TArg> tryChangeItem, TArg argument) : ImmutableDictionary<TKey,TValue>
  170. - ReflectionExtensions
  171. - TryGetCustomAttribute<T>(this MemberInfo? type, out T? attribute) : bool
  172. - TryGetCustomAttribute<T>(this Type? type, ConcurrentDictionary<Type,T?> cache, out T? attribute) : bool
  173. - IsAssignableToGenericType(this Type givenType, Type openGenericType) : bool
  174. - IsAssignableToGenericType(this Type givenType, Type openGenericType, out Type[] genericArguments) : bool
  175. - IsAssignableToGenericType(this Type givenType, Type openGenericType, out Type[] genericArguments, out Type? closedType) : bool
  176. - CommunityToolkit.Mvvm
  177. - MessengerExtensions
  178. - ReplyIfNotNull<T>(this RecordRequestMessage<T> message, T? reply) : void
  179. - ReplyIfNotNull<T>(this RequestMessage<T> message, T? reply) : void
  180. - RegisterForSender<TRecipient,TSender,TMessage>(this IMessenger messenger, TRecipient recipient, TSender sender, MessageHandler<TRecipient,TMessage> handler) : void
  181. - RegisterAsSender<TRecipient,TMessage>(this IMessenger messenger, TRecipient recipient, MessageHandler<TRecipient,TMessage> handler) : void
  182. - RegisterAsSender<TRecipient,TMessage,TToken>(this IMessenger messenger, TRecipient recipient, TToken token, MessageHandler<TRecipient,TMessage> handler) : void
  183. - SenderHandler<TRecipient,TSender,TMessage>(MessageHandler<TRecipient,TMessage> handler, Func<object?,TSender,bool> predicate, TSender desiredSender) : MessageHandler<TRecipient,TMessage>
  184. - RegisterAsync<TRecipient,TMessage,TToken>(this IMessenger messenger, TRecipient recipient, TToken token, Func<TRecipient,TMessage,Task> handler) : void
  185. - Register<TRecipient,TMessage,TToken>(this IMessenger messenger, TRecipient recipient, TToken token, MessageHandler<TRecipient,TMessage,TToken> handler) : void
  186. - TryGetValue<T>(this RecordRequestMessage<T> message, out T response) : bool
  187. - WPF
  188. - BehaviorExtensions
  189. - AddAndReturn<TBehavior>(this TBehavior behavior, BehaviorCollection behaviors) : TBehavior
  190. - GetFirstBehaviorOrNull<TControl,TBehavior>(this TControl control) : TBehavior?
  191. - TryGetFirstBehaviorOrNull<TBehavior>(this DependencyObject control, out BehaviorCollection behaviors, out TBehavior? result) : bool
  192. - GetFirstBehaviorOrAdd<TBehavior>(this DependencyObject control) : TBehavior
  193. - GetFirstBehaviorOrAdd<TControl,TBehavior>(this TControl control) : TBehavior
  194. - GetFirstBehaviorOrAdd<TControl,TBehavior>(this TControl control, Func<TControl,TBehavior> factory) : TBehavior
  195. - GetFirstBehaviorOrAdd<TControl,TBehavior,TArg>(this TControl control, Func<TControl,TArg,TBehavior> factory, TArg argument) : TBehavior
  196. - RemoveBehaviors<TBehavior>(this DependencyObject? control) : void
  197. - AddTo<TBehavior,TControl>(this TBehavior? behavior, TControl? control) : void
  198. - AddTo(this Behavior? behavior, DependencyObject? control) : void
  199. - RemoveFrom<TBehavior,TControl>(this TBehavior? behavior, TControl? control) : void
  200. - RemoveFrom(this Behavior? behavior, DependencyObject? control) : void
  201. - BindingExtensions
  202. - Clone(this BindingBase bindingBase, object? source) : BindingBase
  203. - Clone(this Binding binding, object? source) : Binding
  204. - CloneSource(Binding destination, Binding sourceBinding, object? newSource) : void
  205. - Clone(this MultiBinding multiBinding, object? source) : MultiBinding
  206. - Clone(this PriorityBinding priorityBinding, object? source) : BindingBase
  207. - AddRangeClone(this ICollection<BindingBase> result, IEnumerable<BindingBase> other, object? source) : void
  208. - Evaluate<T>(this BindingBase binding, DependencyObject? target) : T?
  209. - Evaluate(this BindingBase binding, DependencyObject? target) : object?
  210. - CommandExtensions
  211. - CanExecute(this ICommand? command, object? parameter, IInputElement? target) : bool
  212. - Execute(this ICommand? command, object? parameter, IInputElement? target) : void
  213. - NotifyCanExecuteChanged(this ICommand? command) : void
  214. - CreateBinding(this ICommand command, ExecutedRoutedEventHandler? execute, CanExecuteRoutedEventHandler? canExecute, ExecutedRoutedEventHandler? previewExecute, CanExecuteRoutedEventHandler? previewCanExecute) : CommandBinding
  215. - RemoveBinding(this CommandBindingCollection commandBindings, ICommand command) : void
  216. - CanExecuteChangedHandler(this ICommand? notify, bool add, EventHandler<EventArgs> handler) : void
  217. - AddCanExecuteChangedHandler(this ICommand? notify, EventHandler<EventArgs> handler) : void
  218. - RemoveCanExecuteChangedHandler(this ICommand? notify, EventHandler<EventArgs> handler) : void
  219. - DataErrorExtensions
  220. - PropertyHasErrors(this INotifyDataErrorInfo notify, string propertyName) : bool
  221. - DependencyObjectExtensions
  222. - GetValue<T>(this DependencyObject dependencyObject, DependencyProperty property) : T?
  223. - SetValue<T>(this DependencyObject dependencyObject, DependencyProperty property, T? value) : T?
  224. - GetValue<T>(this DependencyObject dependencyObject, DependencyPropertyKey property) : T?
  225. - SetValue<T>(this DependencyObject dependencyObject, DependencyPropertyKey property, T? value) : T?
  226. - SetCurrentValue<T>(this DependencyObject dependencyObject, DependencyProperty property, T? value) : T?
  227. - SetProperty<TControl,TValue>(this TControl? control, TValue value, Action<TControl,TValue> setter) : void
  228. - SetField<TControl,TField>(this TControl control, ref TField field, TField value, Action<TControl,TField,bool> subscribeUnsubscribe) : void
  229. - SetField<TControl,TField>(this TControl control, ref TField? field, TField? value, Action<TControl,TField> subscribe, Action<TControl,TField> unsubscribe) : void
  230. - WireEvent<TControl,THandler>(this TControl? control, THandler handler, Action<TControl,THandler,bool> subUnsub, bool subscribe) : void
  231. - WireEvent<TControl>(this TControl? control, RoutedEventHandler handler, Action<TControl,RoutedEventHandler> subscriber, Action<TControl,RoutedEventHandler> unsubscriber, bool subscribe) : void
  232. - WireEvent<TControl,THandler>(this TControl? control, THandler handler, Action<TControl,THandler> subscriber, Action<TControl,THandler> unsubscriber, bool subscribe) : void
  233. - WireEvent<TControl>(this TControl? control, RoutedEventHandler handler, Func<bool,Action<TControl,RoutedEventHandler>> getAction, bool subscribe) : void
  234. - WireEvent<TControl>(this TControl? control, RoutedEventHandler handler, Action<TControl,RoutedEventHandler> action) : void
  235. - WireEvent<TControl,THandler>(this TControl? control, THandler handler, Action<TControl,THandler> action) : void
  236. - EventArgsExtensions
  237. - GetCommandParameterFromAnySource<TResult>(this RoutedEventArgs args, object? sender) : TResult?
  238. - GetCommandParameterFromAnySource<TResult>(this ExecutedRoutedEventArgs args, object? sender) : TResult?
  239. - GetCommandParameterFromAnySource<TResult>(this CanExecuteRoutedEventArgs args, object? sender) : TResult?
  240. - FreezableExtensions
  241. - CloneIfNotFrozen<T>(this T? freezable) : T?
  242. - ItemsControlExtensions
  243. - CreateGetItemsHostLambda() : Func<ItemsControl,Panel?>
  244. - GetItemsPanel(this ItemsControl itemsControl) : Panel?
  245. - GetItemContainer(this ItemsControl itemsControl, object value) : DependencyObject
  246. - GetItemContainer<TContainer>(this ItemsControl itemsControl, object value) : TContainer?
  247. - GetItemContainerFromIndex(this ItemsControl itemsControl, int index) : DependencyObject
  248. - GetItemContainerFromIndex<TContainer>(this ItemsControl itemsControl, int index) : TContainer?
  249. - TryGetItemContainer<TContainer>(this ItemsControl itemsControl, object value, out TContainer? itemContainer) : bool
  250. - TryFindItemsPresenter(this ItemsControl? container, out ItemsPresenter? itemsPresenter) : bool
  251. - LogicalTreeExtensions
  252. - GetLogicalAncestors(this DependencyObject? current) : IEnumerable<DependencyObject>
  253. - TryGetParent(DependencyObject? current, out DependencyObject? parent) : bool
  254. - GetParent(DependencyObject? current) : DependencyObject?
  255. - TemplateExtensions
  256. - FindName<T>(this FrameworkTemplate? template, string name, FrameworkElement templatedParent) : T?
  257. - TryFindName<T>(this FrameworkTemplate? template, string name, FrameworkElement templatedParent, out T? result) : bool
  258. - VisualTreeExtensions
  259. - GetVisualChildren(this DependencyObject? parent) : VisualChildrenEnumerator
  260. - GetVisualAncestors<T>(this DependencyObject? node) : VisualAncestorEnumerator<T>
  261. - GetVisualAncestors(this DependencyObject? node) : VisualAncestorEnumerator<DependencyObject>
  262. - FindVisualAncestor(this DependencyObject? current) : DependencyObject?
  263. - TryFindVisualAncestor<T,TArg>(this DependencyObject? current, Func<T,TArg,bool>? predicate, TArg argument, out T? ancestor) : bool
  264. - TryFindVisualAncestor<T>(this DependencyObject? current, out T? ancestor) : bool
  265. - TryFindVisualAncestor<T>(this DependencyObject? current, T lookupItem, out T? ancestor) : bool
  266. - TryFindVisualAncestor<T>(this DependencyObject? current, string? parentName, out T? ancestor) : bool
  267. - FindVisualAncestor<T>(this DependencyObject? current) : T?
  268. - FindVisualAncestor<T>(this DependencyObject? current, T lookupItem) : T?
  269. - TryFindVisualAncestor<T>(this DependencyObject current, string parentName) : T?
  270. - TryFindVisualChild<T,TArg>(this DependencyObject? parent, Func<T,TArg,bool>? predicate, TArg argument, out T? foundChild) : bool
  271. - TryFindVisualChild<T>(this DependencyObject? parent, out T? foundChild) : bool
  272. - TryFindVisualChild<T>(this DependencyObject? current, string? parentName, out T? ancestor) : bool
  273. - GetVisualChild(this DependencyObject? parent, int index) : DependencyObject?
  274. - GetVisualChild<T>(this DependencyObject? parent, int index) : T?
  275. - TryGetVisualChild(this DependencyObject? parent, int index, out object? result) : bool
  276. - TryGetVisualChild<T>(this DependencyObject? parent, int index, out T? result) : bool
  277. - FindVisualChild<T>(this DependencyObject? parent) : T?
  278. - FindVisualChild<T>(this DependencyObject? parent, string name) : T?
  279. - WindowExtensions
  280. - ShowMessageBox(this Window? owner, string messageBoxText, string caption, MessageBoxButton button, MessageBoxImage icon, MessageBoxResult defaultResult) : MessageBoxResult
  281. - ObjectExtensions
  282. - CreateUiElement(this object? value, Brush? foregroundBrush, bool useContentPresenter) : UIElement?
  283. - CreateSvgAwesome(this EFontAwesomeIcon icon, Brush? foregroundBrush) : SvgAwesome?
  284. - CreatePackIcon(this PackIconKind icon, Brush? foregroundBrush) : PackIcon?
  285. - PropertyPathExtensions
  286. - Evaluate<T>(this PropertyPath path, object? source, T? specifiedDefault) : T?
  287. - Evaluate(this PropertyPath path, object? source) : object?
  288. - SizeExtensions
  289. - Deconstruct(this Size size, out double width, out double height) : void
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement