UnityBindingExtensions Class
Assembly: UniTask.dll
public static class UnityBindingExtensions
Inheritance
object →
UnityBindingExtensions
Members
Methods
Name |
Description |
BindTo(IUniTaskAsyncEnumerable<bool>, Selectable, bool)
|
|
BindTo(IUniTaskAsyncEnumerable<bool>, Selectable, CancellationToken, bool)
|
|
BindTo(IUniTaskAsyncEnumerable<string>, Text, bool)
|
|
BindTo(IUniTaskAsyncEnumerable<string>, Text, CancellationToken, bool)
|
|
BindTo<T>(AsyncReactiveProperty<T>, Text, bool)
|
|
BindTo<T>(IUniTaskAsyncEnumerable<T>, Text, bool)
|
|
BindTo<T>(IUniTaskAsyncEnumerable<T>, Text, CancellationToken, bool)
|
|
BindTo<TSource, TObject>(IUniTaskAsyncEnumerable<TSource>, TObject, Action<TObject, TSource>, bool)
|
|
BindTo<TSource, TObject>(IUniTaskAsyncEnumerable<TSource>, TObject, Action<TObject, TSource>, CancellationToken, bool)
|
|
Methods
BindTo(IUniTaskAsyncEnumerable<bool>, Selectable, bool)
public static void BindTo(this IUniTaskAsyncEnumerable<bool> source, Selectable selectable, bool rebindOnError = true)
BindTo(IUniTaskAsyncEnumerable<bool>, Selectable, CancellationToken, bool)
public static void BindTo(this IUniTaskAsyncEnumerable<bool> source, Selectable selectable, CancellationToken cancellationToken, bool rebindOnError = true)
BindTo(IUniTaskAsyncEnumerable<string>, Text, bool)
public static void BindTo(this IUniTaskAsyncEnumerable<string> source, Text text, bool rebindOnError = true)
BindTo(IUniTaskAsyncEnumerable<string>, Text, CancellationToken, bool)
public static void BindTo(this IUniTaskAsyncEnumerable<string> source, Text text, CancellationToken cancellationToken, bool rebindOnError = true)
BindTo<T>(AsyncReactiveProperty<T>, Text, bool)
public static void BindTo<T>(this AsyncReactiveProperty<T> source, Text text, bool rebindOnError = true)
BindTo<T>(IUniTaskAsyncEnumerable<T>, Text, bool)
public static void BindTo<T>(this IUniTaskAsyncEnumerable<T> source, Text text, bool rebindOnError = true)
BindTo<T>(IUniTaskAsyncEnumerable<T>, Text, CancellationToken, bool)
public static void BindTo<T>(this IUniTaskAsyncEnumerable<T> source, Text text, CancellationToken cancellationToken, bool rebindOnError = true)
BindTo<TSource, TObject>(IUniTaskAsyncEnumerable<TSource>, TObject, Action<TObject, TSource>, bool)
public static void BindTo<TSource, TObject>(this IUniTaskAsyncEnumerable<TSource> source, TObject monoBehaviour, Action<TObject, TSource> bindAction, bool rebindOnError = true) where TObject : MonoBehaviour
Type Parameters
TSource
TObject
BindTo<TSource, TObject>(IUniTaskAsyncEnumerable<TSource>, TObject, Action<TObject, TSource>, CancellationToken, bool)
public static void BindTo<TSource, TObject>(this IUniTaskAsyncEnumerable<TSource> source, TObject bindTarget, Action<TObject, TSource> bindAction, CancellationToken cancellationToken, bool rebindOnError = true)
Type Parameters
TSource
TObject