[This is preliminary documentation and is subject to change.]

Creates and returns a new album owned by the current session user.

Namespace:  Facebook.Api.Controllers
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.4.13 (0.2009.4.13)

Syntax

C#
public FacebookResponse<Album> CreateAlbum(
	long uid,
	string name,
	string description,
	string location,
	string visible
)
Visual Basic (Declaration)
Public Function CreateAlbum ( _
	uid As Long, _
	name As String, _
	description As String, _
	location As String, _
	visible As String _
) As FacebookResponse(Of Album)
Visual C++
public:
FacebookResponse<Album^>^ CreateAlbum(
	long long uid, 
	String^ name, 
	String^ description, 
	String^ location, 
	String^ visible
)

Parameters

uid
Type: System..::.Int64
The user ID of the user for whom you are creating the album. If this parameter is not specified, then it defaults to the session user.
Note: This parameter applies only to Web applications and is required by them only if the
CopyC#
session_key
is not specified. Facebook ignores this parameter if it is passed by a desktop application.
name
Type: System..::.String
The album name.
description
Type: System..::.String
The album description.
location
Type: System..::.String
The album location.
visible
Type: System..::.String
Visibility of the album. One of
CopyC#
friends
,
CopyC#
friends-of-friends
,
CopyC#
networks
,
CopyC#
everyone
.

Return Value

[Missing <returns> documentation for "M:Facebook.Api.Controllers.PhotosController.CreateAlbum(System.Int64,System.String,System.String,System.String,System.String)"]

See Also

PhotosController Class
CreateAlbum Overload
Facebook.Api.Controllers Namespace