第11章 建立請求URLs - IdentityModel 中文文檔(v1.0.0)

RequestUrl是建立與查詢字符串參數,例如URL的幫手:git

var ru = new RequestUrl("https://server/endpoint");

// produces https://server/endpoint?foo=foo&bar=bar
var url = ru.Create(new
    {
        foo: "foo",
        bar: "bar"
    });

做爲Create方法的參數,您能夠傳入對象或字符串字典。在這兩種狀況下,屬性/值都將序列化爲鍵/值對。github

注意
全部值都將進行URL編碼。c#

RequestUrl在建立用於建模特定於域的URL結構的擴展方法時,它很是有用。有關示例,請參閱Authorize EndpointEndSession Endpoint編碼

github地址url

相關文章
相關標籤/搜索