Erlang.NET.OtpNode.getNames C# (CSharp) Method

getNames() public method

public getNames ( ) : String[]
return String[]
        public String[] getNames()
        {
            return mboxes.names();
        }

Usage Example

Ejemplo n.º 1
0
 /**
  * <p>
  * Get a list of all known registered names on the same {@link OtpNode node}
  * as this mailbox.
  * </p>
  *
  * <p>
  * This method calls a method with the same name in {@link OtpNode#getNames
  * Otpnode} but is provided here for convenience.
  * </p>
  *
  * @return an array of Strings containing all registered names on this
  *         {@link OtpNode node}.
  */
 public String[] getNames()
 {
     return(home.getNames());
 }