FacebookClientExtensions.GetCurrentUserPhotosAsync<TPhotos> Method

Gets the current user photos.

Namespace:  Microsoft.AspNet.Mvc.Facebook.Client
Assembly:  Microsoft.AspNet.Mvc.Facebook (in Microsoft.AspNet.Mvc.Facebook.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetCurrentUserPhotosAsync(Of TPhotos As Class) ( _
    client As FacebookClient _
) As Task(Of IList(Of TPhotos))
'Usage
Dim client As FacebookClient 
Dim returnValue As Task(Of IList(Of TPhotos))

returnValue = client.GetCurrentUserPhotosAsync()
public static Task<IList<TPhotos>> GetCurrentUserPhotosAsync<TPhotos>(
    this FacebookClient client
)
where TPhotos : class
[ExtensionAttribute]
public:
generic<typename TPhotos>
where TPhotos : ref class 
static Task<IList<TPhotos>^>^ GetCurrentUserPhotosAsync(
    FacebookClient^ client
)
static member GetCurrentUserPhotosAsync : 
        client:FacebookClient -> Task<IList<'TPhotos>>  when 'TPhotos : not struct
JScript does not support generic types and methods.

Type Parameters

  • TPhotos
    The type of the photo.

Parameters

  • client
    Type: FacebookClient
    The client.

Return Value

Type: System.Threading.Tasks.Task<IList<TPhotos>>
A collection of user photos.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FacebookClient. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).

See Also

Reference

FacebookClientExtensions Class

Microsoft.AspNet.Mvc.Facebook.Client Namespace