CloudinaryDotNet.Actions.FileDescription.FileDescription C# (CSharp) Метод

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

Constructor to upload file from stream
public FileDescription ( string name, Stream stream ) : System
name string Resource name
stream Stream Stream to read from (will be disposed with this object)
Результат System
        public FileDescription(string name, Stream stream)
        {
            m_name = name;
            m_stream = stream;
        }

Same methods

FileDescription::FileDescription ( string filePath ) : System