Tries to parse the uri, which should be a full uri, i.e containing protocol.
For example "akka://System/user/my-actor"
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static bool TryParse(
string path,
out ActorPath actorPath
)
Public Shared Function TryParse (
path As String,
<OutAttribute> ByRef actorPath As ActorPath
) As Boolean
public:
static bool TryParse(
String^ path,
[OutAttribute] ActorPath^% actorPath
)
static member TryParse :
path : string *
actorPath : ActorPath byref -> bool
Parameters
- path
- Type: SystemString
[Missing <param name="path"/> documentation for "M:Akka.Actor.ActorPath.TryParse(System.String,Akka.Actor.ActorPath@)"]
- actorPath
- Type: Akka.ActorActorPath
[Missing <param name="actorPath"/> documentation for "M:Akka.Actor.ActorPath.TryParse(System.String,Akka.Actor.ActorPath@)"]
Return Value
Type:
Boolean[Missing <returns> documentation for "M:Akka.Actor.ActorPath.TryParse(System.String,Akka.Actor.ActorPath@)"]
See Also