Share via


Pattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Class

Represents a join pattern.

Inheritance Hierarchy

System.Object
  System.Reactive.Joins.Pattern
    System.Reactive.Joins.Pattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>

Namespace:  System.Reactive.Joins
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
Public Class Pattern(Of T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) _
    Inherits Pattern
'Usage
Dim instance As Pattern(Of T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)
public class Pattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> : Pattern
generic<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10>
public ref class Pattern : public Pattern
type Pattern<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7, 'T8, 'T9, 'T10> =  
    class
        inherit Pattern
    end
JScript does not support generic types and methods.

Type Parameters

  • T1
    The type of the first observable sequence.
  • T2
    The type of the second observable sequence.
  • T3
    The type of the third observable sequence.
  • T4
    The type of the fourth observable sequence.
  • T5
    The type of the fifth observable sequence.
  • T6
    The type of the sixth observable sequence.
  • T7
    The type of the seventh observable sequence.
  • T8
    The type of the eighth observable sequence.
  • T9
    The type of the ninth observable sequence.
  • T10
    The type of the tenth observable sequence.

The Pattern<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> type exposes the following members.

Methods

  Name Description
Public method And<T11> Matches when all observable sequences have an available value.
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method Then<TResult> Matches when all observable sequences have an available value and projects the values.
Public method ToString (Inherited from Object.)

Top

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

System.Reactive.Joins Namespace