本文整理匯總了C#中System.Environment.GetBasicAuth方法的典型用法代碼示例。如果您正苦於以下問題:C# Environment.GetBasicAuth方法的具體用法?C# Environment.GetBasicAuth怎麽用?C# Environment.GetBasicAuth使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Environment
的用法示例。
在下文中一共展示了Environment.GetBasicAuth方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetBasicAuth_returns_null_if_no_auth_header
public void GetBasicAuth_returns_null_if_no_auth_header()
{
var e = new Environment() { Headers = new Dictionary<string, string>() };
Assert.That(e.GetBasicAuth(), Is.Null);
}
示例2: GetBasicAuth_return_null_if_auth_header_value_isnt_Basic
public void GetBasicAuth_return_null_if_auth_header_value_isnt_Basic()
{
var e = new Environment() { Headers = new Dictionary<string, string>()
{ { "authorization", "Foo" } } };
Assert.That(e.GetBasicAuth(), Is.Null);
}
示例3: GetBasicAuth_decodes_basic_auth
public void GetBasicAuth_decodes_basic_auth()
{
var e = new Environment() { Headers = new Dictionary<string, string>()
{ { "authorization", "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" } } };
Assert.That(e.GetBasicAuth(), Is.EqualTo("Aladdin:open sesame"));
}