Document.IsEncrypted

IsEncrypted(Stream, LoadOptions, out Document)

ストリームからのドキュメントが暗号化されているかどうかを確認します。 確認するには、このドキュメントを完全にロードする必要があります。したがって、この方法ではパフォーマンスが低下する可能性があります.

public static bool IsEncrypted(Stream stream, LoadOptions options, out Document document)
パラメータタイプ説明
streamStreamストリーム.
optionsLoadOptionsロード オプション。
documentDocument&読み込まれたドキュメント。

戻り値

ドキュメントが暗号化されている場合は true、そうでない場合は false を返します。

ドキュメントがパスワードで保護されているかどうかを確認する方法を示します。

// ドキュメント ディレクトリへのパス。
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&読み込まれたドキュメント。

戻り値

ドキュメントが暗号化されている場合は true、そうでない場合は false を返します。

ドキュメントがパスワードで保護されているかどうかを確認する方法を示します。

// ドキュメント ディレクトリへのパス。
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&読み込まれたドキュメント。

戻り値

ドキュメントが暗号化されている場合は true、そうでない場合は false を返します。

ドキュメントがパスワードで保護されているかどうかを確認する方法を示します。

// ドキュメント ディレクトリへのパス。
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&読み込まれたドキュメント。

戻り値

ドキュメントが暗号化されている場合は true、そうでない場合は false を返します。

ドキュメントがパスワードで保護されているかどうかを確認する方法を示します。

// ドキュメント ディレクトリへのパス。
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&読み込まれたドキュメント。

戻り値

ドキュメントが暗号化されている場合は true、そうでない場合は false を返します。

ドキュメントがパスワードで保護されているかどうかを確認する方法を示します。

// ドキュメント ディレクトリへのパス。
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&読み込まれたドキュメント。

戻り値

ドキュメントが暗号化されている場合は true、そうでない場合は false を返します。

ドキュメントがパスワードで保護されているかどうかを確認する方法を示します。

// ドキュメント ディレクトリへのパス。
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.");
}

関連項目