BExIS.IO.BasicFileInfo.BasicFileInfo C# (CSharp) Method

BasicFileInfo() public method

Constructor of BasicFileInfo
public BasicFileInfo ( string name, string path, string mimeType, string extention, double fileSize ) : System
name string
path string Location where the file exist
mimeType string Type of the file
extention string
fileSize double
return System
        public BasicFileInfo(string name,  string path,string mimeType, string extention, double fileSize)
        {
            Name = name;
            Uri = path;
            MimeType = mimeType;
            FileSize = fileSize;
            Extention = extention;
        }
BasicFileInfo