Cake.Common.SecureFileAliases.SecureFileCrypt C# (CSharp) Метод

SecureFileCrypt() приватный Метод

private SecureFileCrypt ( this context, FilePath file, FilePath encryptedFile, string secret ) : void
context this
file FilePath
encryptedFile FilePath
secret string
Результат void
        public static void SecureFileCrypt( this ICakeContext context, FilePath file, FilePath encryptedFile, string secret )
        {
            RijndaelCrypt.Encrypt( file.FullPath, encryptedFile.FullPath, secret );
        }