System.IO.Abstractions.FileInfoWrapper.FileInfoWrapper C# (CSharp) Méthode

FileInfoWrapper() public méthode

public FileInfoWrapper ( FileInfo instance ) : System.Security.AccessControl
instance FileInfo
Résultat System.Security.AccessControl
        public FileInfoWrapper(FileInfo instance)
        {
            if (instance == null)
            {
                throw new ArgumentNullException("instance");
            }

            this.instance = instance;
        }