-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
93 additions
and
49 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
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,45 @@ | ||
using Twilio.Clients; | ||
using Twilio.Clients.BearerToken; | ||
using Twilio.Exceptions; | ||
using Twilio.Http.BearerToken; | ||
|
||
namespace Twilio | ||
{ | ||
public class ClientProperties | ||
{ | ||
public static string region; | ||
public static string edge; | ||
public static string logLevel; | ||
|
||
public ClientProperties() { } | ||
|
||
|
||
/// <summary> | ||
/// Set the client region | ||
/// </summary> | ||
/// <param name="region">Client region</param> | ||
public static void SetRegion(string region) | ||
{ | ||
region = region; | ||
} | ||
|
||
/// <summary> | ||
/// Set the client edge | ||
/// </summary> | ||
/// <param name="edge">Client edge</param> | ||
public static void SetEdge(string edge) | ||
{ | ||
edge = edge; | ||
} | ||
|
||
/// <summary> | ||
/// Set the logging level | ||
/// </summary> | ||
/// <param name="loglevel">log level</param> | ||
public static void SetLogLevel(string loglevel) | ||
{ | ||
logLevel = loglevel; | ||
} | ||
|
||
} | ||
} |
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
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
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
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
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