| ActorPathIsValidPathElement Method |
Method that checks if actor name conforms to RFC 2396, http://www.ietf.org/rfc/rfc2396.txt
Note that AKKA JVM does not allow parenthesis ( ) but, according to RFC 2396 those are allowed, and
since we use URL Encode to create valid actor names, we must allow them.
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static bool IsValidPathElement(
string s
)
static member IsValidPathElement :
s : string -> bool
Parameters
- s
- Type: SystemString
TBD
Return Value
Type:
BooleanTBD
See Also