Classes.ServiceLookup.GetLinkedInService C# (CSharp) Method

GetLinkedInService() private method

private GetLinkedInService ( ) : ILinkedInService
return ILinkedInService
        public static ILinkedInService GetLinkedInService()
        {
            return new LinkedInOAuthClient(new CookieAccessTokenStorage(ConsumerSecret),
                                           new DotNetOpenAuthWebConsumer(ServiceDescriptions.Authorize,
                                                                         new InMemoryOAuthTokenManager(ConsumerKey,
                                                                                                       ConsumerSecret)));
        }
ServiceLookup