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.");
}

Δείτε επίσης