BridgeStack.StackClient.SimulateError C# (CSharp) Метод

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

Makes a request to API method /errors/{id}

Documentation can be found following the link below:

https://api.stackexchange.com/docs/simulate-error

public SimulateError ( int id, SiteQuery parameters = null ) : IBridgeResponseItem
id int The id of the error to simulate
parameters SiteQuery The request parameters.
Результат IBridgeResponseItem
        public override IBridgeResponseItem<ApiException> SimulateError(int id, SiteQuery parameters = null)
        {
            return GetApiResultItem<ApiException, SiteQuery>(ApiMethodEnum.SimulateError, CreateIdVector(id), parameters);
        }
StackClient