mirror of
https://github.com/nsnail/ns-ext.git
synced 2025-04-19 19:42:51 +08:00
24 lines
326 B
C#
24 lines
326 B
C#
namespace NSExt.Extensions;
|
|
|
|
public static class UriExtensions
|
|
{
|
|
/// <summary>
|
|
/// 移除url的Scheme
|
|
/// </summary>
|
|
/// <param name="me"></param>
|
|
/// <returns></returns>
|
|
public static string RemoveScheme(this Uri me)
|
|
{
|
|
return "//" + me.Authority + me.PathAndQuery;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|