ActorPathDivision Operator (ActorPath, IEnumerableString) |
Recursively create a descendant’s path by appending all child names.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static ActorPath operator /(
ActorPath path,
IEnumerable<string> name
)
Public Shared Operator / (
path As ActorPath,
name As IEnumerable(Of String)
) As ActorPath
public:
static ActorPath^ operator /(
ActorPath^ path,
IEnumerable<String^>^ name
)
static let inline (/)
path : ActorPath *
name : IEnumerable<string> : ActorPath
Parameters
- path
- Type: Akka.ActorActorPath
The path. - name
- Type: System.Collections.GenericIEnumerableString
The name.
Return Value
Type:
ActorPath The result of the operator.
See Also