FlickrNet.Flickr.ContactsGetList C# (CSharp) Method

ContactsGetList() public method

Gets a list of contacts for the logged in user. Requires authentication.
public ContactsGetList ( ) : FlickrNet.Contacts
return FlickrNet.Contacts
        public Contacts ContactsGetList()
        {
            Hashtable parameters = new Hashtable();
            parameters.Add("method", "flickr.contacts.getList");
            FlickrNet.Response response = GetResponseCache(parameters);

            if( response.Status == ResponseStatus.OK )
            {
                return response.Contacts;
            }
            else
            {
                throw new FlickrException(response.Error);
            }
        }
Flickr