Login Method (String, String[])

Facebook API Wrapper

Collapse image Expand Image Copy image CopyHover image
Attempts to login into facebook using given application id and permissions.

Namespace: FacebookWrapper
Assembly: FbGraphApiWrapper (in FbGraphApiWrapper.dll) Version: 6.2.1.2 (6.2.1.2)

Syntax

C#
public static LoginResult Login(
	string i_AppId,
	params string[] i_Permissions
)
Visual Basic
Public Shared Function Login ( _
	i_AppId As String, _
	ParamArray i_Permissions As String() _
) As LoginResult
Visual C++
public:
static LoginResult^ Login(
	String^ i_AppId, 
	... array<String^>^ i_Permissions
)

Parameters

i_AppId
Type: System..::..String
Application ID
i_Permissions
Type: array<System..::..String>[]()[][]
The permissions requested from the user by the appliction

Return Value

true if login successfull, false otherwise

See Also