コード例 #1
0
ファイル: OAuthRequest.cs プロジェクト: AmberishSingh/pesta
        /**
         * @param fetcherConfig configuration options for the fetcher
         * @param fetcher fetcher to use for actually making requests
         * @param trustedParams additional parameters to include in all outgoing OAuth requests, useful
         *     for client data that can't be pulled from the security token but is still trustworthy.
         */

        private OAuthRequest(OAuthFetcherConfig fetcherConfig, IHttpFetcher fetcher,
                             List <OAuth.Parameter> trustedParams)
        {
            this.fetcherConfig = fetcherConfig;
            this.fetcher       = fetcher;
            this.trustedParams = trustedParams;
        }
コード例 #2
0
ファイル: OAuthRequest.cs プロジェクト: s7loves/pesta
        /**
        * @param fetcherConfig configuration options for the fetcher
        * @param fetcher fetcher to use for actually making requests
        * @param trustedParams additional parameters to include in all outgoing OAuth requests, useful
        *     for client data that can't be pulled from the security token but is still trustworthy.
        */

        private OAuthRequest(OAuthFetcherConfig fetcherConfig, IHttpFetcher fetcher,
                List<OAuth.Parameter> trustedParams) 
        {
            this.fetcherConfig = fetcherConfig;
            this.fetcher = fetcher;
            this.trustedParams = trustedParams;
        }