Exemple #1
0
 public Observable <TModel> ModelFromObject <TModel>(object data, KnockoutMappingArraySpecification <TModel> mapping, ObservableArray <TModel> target)
 {
     return(null);
 }
Exemple #2
0
 /// <summary>
 /// If the provided value is an observable, return its value, otherwise just pass it through.
 /// </summary>
 /// <param name="value">The value to unwrap.</param>
 public static T[] UnwrapObservable <T>(ObservableArray <T> value)
 {
     return(null);
 }
 /// <summary>
 /// If the provided value is an observable, returns the current value without creating a dependency, otherwise just pass it through.
 /// </summary>
 /// <param name="value">The value to peek.</param>
 public static T[] PeekObservable <T>(ObservableArray <T> value)
 {
     return(null);
 }