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.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static bool IsValidPathElement(
string s
)
Public Shared Function IsValidPathElement (
s As String
) As Boolean
public:
static bool IsValidPathElement(
String^ s
)
static member IsValidPathElement :
s : string -> bool
Parameters
- s
- Type: SystemString
[Missing <param name="s"/> documentation for "M:Akka.Actor.ActorPath.IsValidPathElement(System.String)"]
Return Value
Type:
Boolean[Missing <returns> documentation for "M:Akka.Actor.ActorPath.IsValidPathElement(System.String)"]
See Also