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
using Auth0.Core.Http; | |
using Auth0.ManagementApi; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Auth0Purge | |
{ |
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
public static PublicInfoResponse LoadResponse() | |
{ | |
PublicInfoResponse publicInfoResponse = (PublicInfoResponse)HttpRuntime.Cache["Odesk:PublicInfoResponse"]; | |
if (publicInfoResponse == null) | |
{ | |
Models.OAuthParams parameters; | |
string method = "GET"; | |
parameters = new Models.OAuthParams(); | |
parameters.Token = ConfigurationManager.AppSettings["apiKeys:UpworkoAuthToken"]; |
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
using System; | |
using Xamarin.Forms; | |
using System.Collections; | |
using System.Reflection; | |
using System.Collections.Specialized; | |
namespace XLabs.Forms.Controls | |
{ | |
/// <summary> | |
/// Extends the Picker Class to add additional features not supported out of the box by Xamarin. |