Document.IsEncrypted

IsEncrypted(Stream, LoadOptions, out Document)

检查流中的文档是否已加密。 要检查它,我们需要完全加载该文档。所以这种方法会导致性能下降。

public static bool IsEncrypted(Stream stream, LoadOptions options, out Document document)
范围类型描述
streamStream流.
optionsLoadOptions加载选项。
documentDocument&加载的文档。

返回值

如果文档已加密则返回真,否则返回假。

例子

显示如何检查文档是否受密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (!Document.IsEncrypted(fileName, out document))
{
    Console.WriteLine("The document is loaded and ready to be processed.");
}
else
{
    Console.WriteLine("The document is encrypted. Provide a password.");
}

显示如何检查文档是否受特定密码的密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (Document.IsEncrypted(fileName, "VerySecretPassword", out document))
{
    if (document != null)
    {
        Console.WriteLine("The document is decrypted. It is loaded and ready to be processed.");
    }
    else
    {
        Console.WriteLine("The document is encrypted. Invalid password was provided.");
    }
}
else
{
    Console.WriteLine("The document is NOT encrypted. It is loaded and ready to be processed.");
}

也可以看看


IsEncrypted(Stream, string, out Document)

检查流中的文档是否已加密。 要检查它,我们需要完全加载该文档。所以这种方法会导致性能下降。

public static bool IsEncrypted(Stream stream, string password, out Document document)
范围类型描述
streamStream流.
passwordString解密文档的密码。
documentDocument&加载的文档。

返回值

如果文档已加密则返回真,否则返回假。

例子

显示如何检查文档是否受密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (!Document.IsEncrypted(fileName, out document))
{
    Console.WriteLine("The document is loaded and ready to be processed.");
}
else
{
    Console.WriteLine("The document is encrypted. Provide a password.");
}

显示如何检查文档是否受特定密码的密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (Document.IsEncrypted(fileName, "VerySecretPassword", out document))
{
    if (document != null)
    {
        Console.WriteLine("The document is decrypted. It is loaded and ready to be processed.");
    }
    else
    {
        Console.WriteLine("The document is encrypted. Invalid password was provided.");
    }
}
else
{
    Console.WriteLine("The document is NOT encrypted. It is loaded and ready to be processed.");
}

也可以看看


IsEncrypted(Stream, out Document)

检查流中的文档是否已加密。 要检查它,我们需要完全加载该文档。所以这种方法会导致性能下降。

public static bool IsEncrypted(Stream stream, out Document document)
范围类型描述
streamStream流.
documentDocument&加载的文档。

返回值

如果文档已加密则返回真,否则返回假。

例子

显示如何检查文档是否受密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (!Document.IsEncrypted(fileName, out document))
{
    Console.WriteLine("The document is loaded and ready to be processed.");
}
else
{
    Console.WriteLine("The document is encrypted. Provide a password.");
}

显示如何检查文档是否受特定密码的密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (Document.IsEncrypted(fileName, "VerySecretPassword", out document))
{
    if (document != null)
    {
        Console.WriteLine("The document is decrypted. It is loaded and ready to be processed.");
    }
    else
    {
        Console.WriteLine("The document is encrypted. Invalid password was provided.");
    }
}
else
{
    Console.WriteLine("The document is NOT encrypted. It is loaded and ready to be processed.");
}

也可以看看


IsEncrypted(string, LoadOptions, out Document)

检查文件中的文档是否已加密。 要检查它,我们需要完全加载该文档。所以这种方法会导致性能下降。

public static bool IsEncrypted(string filePath, LoadOptions options, out Document document)
范围类型描述
filePathString文件路径。
optionsLoadOptions加载选项。
documentDocument&加载的文档。

返回值

如果文档已加密则返回真,否则返回假。

例子

显示如何检查文档是否受密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (!Document.IsEncrypted(fileName, out document))
{
    Console.WriteLine("The document is loaded and ready to be processed.");
}
else
{
    Console.WriteLine("The document is encrypted. Provide a password.");
}

显示如何检查文档是否受特定密码的密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (Document.IsEncrypted(fileName, "VerySecretPassword", out document))
{
    if (document != null)
    {
        Console.WriteLine("The document is decrypted. It is loaded and ready to be processed.");
    }
    else
    {
        Console.WriteLine("The document is encrypted. Invalid password was provided.");
    }
}
else
{
    Console.WriteLine("The document is NOT encrypted. It is loaded and ready to be processed.");
}

也可以看看


IsEncrypted(string, out Document)

检查文件中的文档是否已加密。 要检查它,我们需要完全加载该文档。所以这种方法会导致性能下降。

public static bool IsEncrypted(string filePath, out Document document)
范围类型描述
filePathString文件路径。
documentDocument&加载的文档。

返回值

如果文档已加密则返回真,否则返回假。

例子

显示如何检查文档是否受密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (!Document.IsEncrypted(fileName, out document))
{
    Console.WriteLine("The document is loaded and ready to be processed.");
}
else
{
    Console.WriteLine("The document is encrypted. Provide a password.");
}

显示如何检查文档是否受特定密码的密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (Document.IsEncrypted(fileName, "VerySecretPassword", out document))
{
    if (document != null)
    {
        Console.WriteLine("The document is decrypted. It is loaded and ready to be processed.");
    }
    else
    {
        Console.WriteLine("The document is encrypted. Invalid password was provided.");
    }
}
else
{
    Console.WriteLine("The document is NOT encrypted. It is loaded and ready to be processed.");
}

也可以看看


IsEncrypted(string, string, out Document)

检查文件中的文档是否已加密。 要检查它,我们需要完全加载该文档。所以这种方法会导致性能下降。

public static bool IsEncrypted(string filePath, string password, out Document document)
范围类型描述
filePathString文件路径。
passwordString解密文档的密码。
documentDocument&加载的文档。

返回值

如果文档已加密则返回真,否则返回假。

例子

显示如何检查文档是否受密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (!Document.IsEncrypted(fileName, out document))
{
    Console.WriteLine("The document is loaded and ready to be processed.");
}
else
{
    Console.WriteLine("The document is encrypted. Provide a password.");
}

显示如何检查文档是否受特定密码的密码保护。

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string fileName = Path.Combine(dataDir, "Aspose.one");

Document document;
if (Document.IsEncrypted(fileName, "VerySecretPassword", out document))
{
    if (document != null)
    {
        Console.WriteLine("The document is decrypted. It is loaded and ready to be processed.");
    }
    else
    {
        Console.WriteLine("The document is encrypted. Invalid password was provided.");
    }
}
else
{
    Console.WriteLine("The document is NOT encrypted. It is loaded and ready to be processed.");
}

也可以看看