/// <summary> /// Retrieves a collection of photos contained in the directory. /// </summary> /// <returns>A collection of Photo objects.</returns> public Photos GetPhotos() { if (photos == null) { photos = PhotoUtilities.GetPhotos(token, this); } return(photos); }
public Photos GetPhotos() { this.photos = PhotoUtilities.GetPhotos(base.token, this); return(this.photos); }