This repository has been archived by the owner on Jul 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Synchronous Request Endpoint Updates (#100)
* version 3.1.0 Signed-off-by: elvis ayiemba <[email protected]> * Documentation urls modified Signed-off-by: elvis ayiemba <[email protected]> * Update reversal.md * Update accountbalance.md * Update b2b.md * Update b2c.md * Update callbacks.md * Update callbacks.md * Update callbacks.md * Update and rename commonpitfalls.md to tips.md * Update tips.md * Update tips.md * Update toc.yml * Update index.md * Update README.md * Update README.md * Update README.md * Updated Documentation, resolved broken links Signed-off-by: elvis ayiemba <[email protected]> * updated documentation Signed-off-by: elvis ayiemba <[email protected]> * edited csproj Signed-off-by: elvis ayiemba <[email protected]> * Documentation * Documentation * Refactoring MpesaClient * Adding test project * version 3.1.3 * adding test project * Update MpesaClient * minor cleanup * updates * Improved Error Handling and Improved Asyn -> Sync conversion * Adding Cancellation Tokens * Update IMpesaClient.cs
- Loading branch information
Showing
8 changed files
with
211 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace MpesaLib.Helpers.Exceptions | ||
{ | ||
/// <summary> | ||
/// Mpesa Api Exceptions Helper class | ||
/// </summary> | ||
public class MpesaApiException : Exception | ||
{ | ||
/// <summary> | ||
/// Http Status code | ||
/// </summary> | ||
public int StatusCode { get; set; } | ||
|
||
/// <summary> | ||
/// Content from response body | ||
/// </summary> | ||
public string Content { get; set; } | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters