BridgeStack.AuthorizedStackClient.GetMyTimeline C# (CSharp) Метод

GetMyTimeline() публичный Метод

Makes a request to API method /me/timeline

Documentation can be found following the link below:

https://api.stackexchange.com/docs/me-timeline

public GetMyTimeline ( RangedQuery parameters = null ) : IBridgeResponseCollection
parameters RangedQuery The request parameters.
Результат IBridgeResponseCollection
        public IBridgeResponseCollection<UserTimeline> GetMyTimeline(RangedQuery parameters = null)
        {
            return GetApiResultCollection<UserTimeline, RangedQuery>(ApiMethodEnum.MyTimeline, parameters);
        }