Goedel.Mesh.Account.ID C# (CSharp) Method

ID() public static method

Construct an account identifier from an account name and a portal name.
public static ID ( string Account, string Portal ) : string
Account string The account name.
Portal string The dns address of the portal.
return string
        public static string ID(string Account, string Portal) {
            return Account + "@" + Portal;
            }