MockEnumerable<T> Class
Inheritance Hierarchy
System.Object
ReactiveTests.MockEnumerable<T>
Namespace: ReactiveTests
Assembly: Tests.System.Reactive (in Tests.System.Reactive.dll)
Syntax
'Declaration
Public Class MockEnumerable(Of T) _
Implements IEnumerable(Of T), IEnumerable
'Usage
Dim instance As MockEnumerable(Of T)
public class MockEnumerable<T> : IEnumerable<T>,
IEnumerable
generic<typename T>
public ref class MockEnumerable : IEnumerable<T>,
IEnumerable
type MockEnumerable<'T> =
class
interface IEnumerable<'T>
interface IEnumerable
end
JScript does not support generic types and methods.
Type Parameters
- T
The MockEnumerable<T> type exposes the following members.
Constructors
NameDescriptionMockEnumerable
Methods
NameDescriptionEquals(Inherited from Object.)
Finalize(Inherited from Object.)
GetEnumerator
GetHashCode(Inherited from Object.)
GetType(Inherited from Object.)
MemberwiseClone(Inherited from Object.)
ToString(Inherited from Object.)Top
Extension Methods
NameDescriptionAssertEqual
AssertEqual
Subscribe
Subscribe
ToObservable
ToObservable
Fields
NameDescriptionScheduler
SubscriptionsTop
Explicit Interface Implementations
NameDescriptionIEnumerable.GetEnumeratorTop
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Reference
MockEnumerable<T> Methods
Include Protected Members
Include Inherited Members
The MockEnumerable<T> type exposes the following members.
Methods
NameDescriptionEquals(Inherited from Object.)
Finalize(Inherited from Object.)
GetEnumerator
GetHashCode(Inherited from Object.)
GetType(Inherited from Object.)
MemberwiseClone(Inherited from Object.)
ToString(Inherited from Object.)Top
Extension Methods
NameDescriptionAssertEqual
AssertEqual
Subscribe
Subscribe
ToObservable
ToObservable
Explicit Interface Implementations
NameDescriptionIEnumerable.GetEnumeratorTop
See Also
Reference
MockEnumerable<T> Fields
Include Protected Members
Include Inherited Members
The MockEnumerable<T> type exposes the following members.
Fields
NameDescriptionScheduler
SubscriptionsTop
See Also
Reference
MockEnumerable<T> Constructor
Namespace: ReactiveTests
Assembly: Tests.System.Reactive (in Tests.System.Reactive.dll)
Syntax
'Declaration
Public Sub New ( _
scheduler As TestScheduler, _
underlyingEnumerable As IEnumerable(Of T) _
)
'Usage
Dim scheduler As TestScheduler
Dim underlyingEnumerable As IEnumerable(Of T)
Dim instance As New MockEnumerable(scheduler, _
underlyingEnumerable)
public MockEnumerable(
TestScheduler scheduler,
IEnumerable<T> underlyingEnumerable
)
public:
MockEnumerable(
TestScheduler^ scheduler,
IEnumerable<T>^ underlyingEnumerable
)
new :
scheduler:TestScheduler *
underlyingEnumerable:IEnumerable<'T> -> MockEnumerable
public function MockEnumerable(
scheduler : TestScheduler,
underlyingEnumerable : IEnumerable<T>
)
Parameters
scheduler
Type: Microsoft.Reactive.Testing.TestSchedulerunderlyingEnumerable
Type: System.Collections.Generic.IEnumerable<T>