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