Files

16 lines
345 B
C#
Raw Permalink Normal View History

2024-05-29 00:19:30 +03:00
using BotFramework;
using System;
namespace Kruzya.TelegramBot.Core
{
public class AbsoluteUriParser : IParameterParser<Uri>
{
public Uri DefaultInstance() => null;
public bool TryGetValue(string text, out Uri result)
{
return Uri.TryCreate(text, UriKind.Absolute, out result);
}
}
}