Telegram.Bot.Types.FileToSend.FileToSend C# (CSharp) Method

FileToSend() public method

Send a File from Url
public FileToSend ( Uri url ) : System
url Uri The File to send
return System
        public FileToSend(Uri url)
        {
            Url = url;

            Filename = null;
            Content = null;
            FileId = null;
        }

Same methods

FileToSend::FileToSend ( string fileId ) : System
FileToSend::FileToSend ( string filename, Stream content ) : System
FileToSend