BoxKite.Twitter.UserSession.UserSession C# (CSharp) Метод

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

public UserSession ( TwitterCredentials credentials, IPlatformAdaptor platformAdaptor, int _waitTimeoutSeconds = 30 ) : System
credentials BoxKite.Twitter.Models.TwitterCredentials
platformAdaptor IPlatformAdaptor
_waitTimeoutSeconds int
Результат System
        public UserSession(TwitterCredentials credentials, IPlatformAdaptor platformAdaptor, int _waitTimeoutSeconds = 30)
            : base(credentials.ConsumerKey, credentials.ConsumerSecret, _waitTimeoutSeconds)
        {
            TwitterCredentials = credentials;
            clientID = credentials.ConsumerKey;
            clientSecret = credentials.ConsumerSecret;
            bearerToken = credentials.BearerToken;
            PlatformAdaptor = platformAdaptor;
            waitTimeoutSeconds = _waitTimeoutSeconds;
            IsActive = true;
        }

Same methods

UserSession::UserSession ( string clientID, string clientSecret, IPlatformAdaptor platformAdaptor, int _waitTimeoutSeconds = 30 ) : System
UserSession::UserSession ( string clientID, string clientSecret, string bearerToken, IPlatformAdaptor platformAdaptor, int _waitTimeoutSeconds = 30 ) : System