C# Class FluentSpotifyApi.Core.Exceptions.SpotifyHttpRequestException

The exception that shields any exception thrown by System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage, System.Threading.CancellationToken) or during processing of the response stream. The inner exception always contains the original exception.
Inheritance: FluentSpotifyApi.Core.Exceptions.SpotifyServiceException
ファイルを表示 Open project: dotnetfan/FluentSpotifyApi

Public Methods

Method Description
SpotifyHttpRequestException ( Type clientType, HttpRequestException innerException ) : System

Initializes a new instance of the SpotifyHttpRequestException class.

Method Details

SpotifyHttpRequestException() public method

Initializes a new instance of the SpotifyHttpRequestException class.
public SpotifyHttpRequestException ( Type clientType, HttpRequestException innerException ) : System
clientType Type The client type.
innerException HttpRequestException /// The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. ///
return System