Create__1 - waf/Rx.NET GitHub Wiki
Creates an enumerable sequence based on an asynchronous method that provides a yielder.
Namespace: System.Linq
Assembly: System.Interactive (in System.Interactive.dll)
public static IEnumerable<T> Create<T>(
Action<IYielder<T>> create
)
Type: System.Action<IYielder<T>>
Delegate implementing an asynchronous method that can use the specified yielder to yield return values.
Result sequence element type.
Type: IEnumerable<T>
Sequence that will use the asynchronous method to obtain its elements.