M_Furcadia_Net_Pounce_PounceConnection_CheckFriendName - StarShip-Avalon-Projects/FurcadiaFramework GitHub Wiki
This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
Checks a friend's name to make sure it is a valid alpha numeric (a-z0-9). Furcadia short-name format is lowercase alpha-numeric strings
Namespace: Furcadia.Net.Pounce
Assembly: FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 43
C#
public bool CheckFriendName(
string shortNFriend
)
VB
Public Function CheckFriendName (
shortNFriend As String
) As Boolean
VB Usage
Dim instance As PounceConnection
Dim shortNFriend As String
Dim returnValue As Boolean
returnValue = instance.CheckFriendName(shortNFriend)
C++
public:
bool CheckFriendName(
String^ shortNFriend
)
F#
member CheckFriendName :
shortNFriend : string -> bool
- shortNFriend
- Type: System.String
Name of Friend.
Type: Boolean
True: Friend name is fine. False otherwise.