ImplicitStreamSubscriptionAttribute コンストラクター

定義

オーバーロード

ImplicitStreamSubscriptionAttribute()

すべてのストリーム名前空間をサブスクライブするために使用されます。

ImplicitStreamSubscriptionAttribute(IStreamNamespacePredicate)

ストリーム名前空間述語のインスタンスを渡すことができます。 主に、継承属性を介した拡張ポイントとして使用されます。

ImplicitStreamSubscriptionAttribute(String)

指定したストリーム名前空間をサブスクライブするために使用されます。

ImplicitStreamSubscriptionAttribute(Type)

任意の述語型を渡して、サブスクライブするストリーム名前空間をフィルター処理できるようにします。 述語の型には、パラメーターのないコンストラクターが必要です。

ImplicitStreamSubscriptionAttribute(IStreamNamespacePredicate, String)

ストリーム名前空間述語のインスタンスを渡すことができます。 主に、継承属性を介した拡張ポイントとして使用されます。

ImplicitStreamSubscriptionAttribute(String, String)

指定したストリーム名前空間をサブスクライブするために使用されます。

ImplicitStreamSubscriptionAttribute(Type, String)

任意の述語型を渡して、サブスクライブするストリーム名前空間をフィルター処理できるようにします。 述語の型には、パラメーターのないコンストラクターが必要です。

ImplicitStreamSubscriptionAttribute()

ソース:
StreamSubscriptionAttributes.cs

すべてのストリーム名前空間をサブスクライブするために使用されます。

public ImplicitStreamSubscriptionAttribute ();
Public Sub New ()

適用対象

ImplicitStreamSubscriptionAttribute(IStreamNamespacePredicate)

ソース:
StreamSubscriptionAttributes.cs

ストリーム名前空間述語のインスタンスを渡すことができます。 主に、継承属性を介した拡張ポイントとして使用されます。

public ImplicitStreamSubscriptionAttribute (Orleans.Streams.IStreamNamespacePredicate predicate);
new Orleans.ImplicitStreamSubscriptionAttribute : Orleans.Streams.IStreamNamespacePredicate -> Orleans.ImplicitStreamSubscriptionAttribute
Public Sub New (predicate As IStreamNamespacePredicate)

パラメーター

predicate
IStreamNamespacePredicate

ストリーム名前空間述語。

適用対象

ImplicitStreamSubscriptionAttribute(String)

ソース:
StreamSubscriptionAttributes.cs

指定したストリーム名前空間をサブスクライブするために使用されます。

public ImplicitStreamSubscriptionAttribute (string streamNamespace);
new Orleans.ImplicitStreamSubscriptionAttribute : string -> Orleans.ImplicitStreamSubscriptionAttribute
Public Sub New (streamNamespace As String)

パラメーター

streamNamespace
String

サブスクライブするストリーム名前空間。

適用対象

ImplicitStreamSubscriptionAttribute(Type)

ソース:
StreamSubscriptionAttributes.cs

任意の述語型を渡して、サブスクライブするストリーム名前空間をフィルター処理できるようにします。 述語の型には、パラメーターのないコンストラクターが必要です。

public ImplicitStreamSubscriptionAttribute (Type predicateType);
new Orleans.ImplicitStreamSubscriptionAttribute : Type -> Orleans.ImplicitStreamSubscriptionAttribute
Public Sub New (predicateType As Type)

パラメーター

predicateType
Type

ストリーム名前空間述語の型。

適用対象

ImplicitStreamSubscriptionAttribute(IStreamNamespacePredicate, String)

ストリーム名前空間述語のインスタンスを渡すことができます。 主に、継承属性を介した拡張ポイントとして使用されます。

public ImplicitStreamSubscriptionAttribute (Orleans.Streams.IStreamNamespacePredicate predicate, string streamIdMapper = default);
new Orleans.ImplicitStreamSubscriptionAttribute : Orleans.Streams.IStreamNamespacePredicate * string -> Orleans.ImplicitStreamSubscriptionAttribute
Public Sub New (predicate As IStreamNamespacePredicate, Optional streamIdMapper As String = Nothing)

パラメーター

predicate
IStreamNamespacePredicate

ストリーム名前空間述語。

streamIdMapper
String

ストリーム ID マッパーの名前。

適用対象

ImplicitStreamSubscriptionAttribute(String, String)

指定したストリーム名前空間をサブスクライブするために使用されます。

public ImplicitStreamSubscriptionAttribute (string streamNamespace, string streamIdMapper = default);
new Orleans.ImplicitStreamSubscriptionAttribute : string * string -> Orleans.ImplicitStreamSubscriptionAttribute
Public Sub New (streamNamespace As String, Optional streamIdMapper As String = Nothing)

パラメーター

streamNamespace
String

サブスクライブするストリーム名前空間。

streamIdMapper
String

ストリーム ID マッパーの名前。

適用対象

ImplicitStreamSubscriptionAttribute(Type, String)

任意の述語型を渡して、サブスクライブするストリーム名前空間をフィルター処理できるようにします。 述語の型には、パラメーターのないコンストラクターが必要です。

public ImplicitStreamSubscriptionAttribute (Type predicateType, string streamIdMapper = default);
new Orleans.ImplicitStreamSubscriptionAttribute : Type * string -> Orleans.ImplicitStreamSubscriptionAttribute
Public Sub New (predicateType As Type, Optional streamIdMapper As String = Nothing)

パラメーター

predicateType
Type

ストリーム名前空間述語の型。

streamIdMapper
String

ストリーム ID マッパーの名前。

適用対象