trellow.api.Notifications.Internal.AsyncNotifications.ForMe C# (CSharp) Méthode

ForMe() public méthode

public ForMe ( IEnumerable types = null, ReadFilter readFilter = ReadFilter.All, Paging paging = null ) : Task>
types IEnumerable
readFilter ReadFilter
paging Paging
Résultat Task>
		public Task<IEnumerable<Notification>> ForMe(IEnumerable<NotificationType> types = null, ReadFilter readFilter = ReadFilter.All, Paging paging = null)
		{
			return _restClient.RequestListAsync<Notification>(new NotificationsForMeRequest(new Me(), types, readFilter, paging));
		}
	}