PastebinAPI.Paste.GetRaw C# (CSharp) Метод

GetRaw() публичный Метод

Gets the raw text for a given url
public GetRaw ( ) : string
Результат string
        public string GetRaw()
        {
            if (Visibility == Visibility.Private)
                throw new PastebinException("Private pastes can not be accessed");
            return Text = Utills.PostRequest(Utills.URL_RAW + Key);
        }