コード例 #1
0
ファイル: RawService.cs プロジェクト: thomasgassmann/microurl
        public async Task <string> GetRawContentAsync(string key)
        {
            var redirectable = await _redirectableStore.LoadAsync(key);

            return(redirectable switch
            {
                MicroText text => text.Text,
                MicroUrl url => url.Url,
                _ => null
            });
コード例 #2
0
 public async Task <string> CreateAsync(MicroUrl microUrl) =>
 await _redirectableStore.CreateAsync(microUrl);