Document.IsEncrypted
IsEncrypted(Stream, LoadOptions, out Document)
للتحقق مما إذا كان مستند من دفق مشفر . للتحقق من ذلك ، نحتاج إلى تحميل هذا المستند بالكامل. لذلك يمكن أن تؤدي هذه الطريقة إلى عقوبة الأداء.
public static bool IsEncrypted(Stream stream, LoadOptions options, out Document document)
معامل | يكتب | وصف |
---|---|---|
stream | Stream | الدفق . |
options | LoadOptions | خيارات التحميل . |
document | Document& | المستند الذي تم تحميله. |
قيمة الإرجاع
يتم إرجاع صحيح إذا تم تشفير المستند أو خطأ.
أمثلة
يوضح كيفية التحقق مما إذا كان المستند محميًا بكلمة مرور.
// المسار إلى دليل المستندات.
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.");
}
أنظر أيضا
- class LoadOptions
- class Document
- مساحة الاسم Aspose.Note
- المجسم Aspose.Note
IsEncrypted(Stream, string, out Document)
للتحقق مما إذا كان مستند من دفق مشفر . للتحقق من ذلك ، نحتاج إلى تحميل هذا المستند بالكامل. لذلك يمكن أن تؤدي هذه الطريقة إلى عقوبة الأداء.
public static bool IsEncrypted(Stream stream, string password, out Document document)
معامل | يكتب | وصف |
---|---|---|
stream | Stream | الدفق . |
password | String | كلمة المرور لفك تشفير مستند. |
document | Document& | المستند الذي تم تحميله. |
قيمة الإرجاع
يتم إرجاع صحيح إذا تم تشفير المستند أو خطأ.
أمثلة
يوضح كيفية التحقق مما إذا كان المستند محميًا بكلمة مرور.
// المسار إلى دليل المستندات.
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.");
}
أنظر أيضا
- class Document
- مساحة الاسم Aspose.Note
- المجسم Aspose.Note
IsEncrypted(Stream, out Document)
للتحقق مما إذا كان مستند من دفق مشفر . للتحقق من ذلك ، نحتاج إلى تحميل هذا المستند بالكامل. لذلك يمكن أن تؤدي هذه الطريقة إلى عقوبة الأداء.
public static bool IsEncrypted(Stream stream, out Document document)
معامل | يكتب | وصف |
---|---|---|
stream | Stream | الدفق . |
document | Document& | المستند الذي تم تحميله. |
قيمة الإرجاع
يتم إرجاع صحيح إذا تم تشفير المستند أو خطأ.
أمثلة
يوضح كيفية التحقق مما إذا كان المستند محميًا بكلمة مرور.
// المسار إلى دليل المستندات.
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.");
}
أنظر أيضا
- class Document
- مساحة الاسم Aspose.Note
- المجسم Aspose.Note
IsEncrypted(string, LoadOptions, out Document)
للتحقق مما إذا كان مستند من ملف مشفر . للتحقق من ذلك ، نحتاج إلى تحميل هذا المستند بالكامل. لذلك يمكن أن تؤدي هذه الطريقة إلى عقوبة الأداء.
public static bool IsEncrypted(string filePath, LoadOptions options, out Document document)
معامل | يكتب | وصف |
---|---|---|
filePath | String | مسار الملف. |
options | LoadOptions | خيارات التحميل . |
document | Document& | المستند الذي تم تحميله. |
قيمة الإرجاع
يتم إرجاع صحيح إذا تم تشفير المستند أو خطأ.
أمثلة
يوضح كيفية التحقق مما إذا كان المستند محميًا بكلمة مرور.
// المسار إلى دليل المستندات.
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.");
}
أنظر أيضا
- class LoadOptions
- class Document
- مساحة الاسم Aspose.Note
- المجسم Aspose.Note
IsEncrypted(string, out Document)
للتحقق مما إذا كان مستند من ملف مشفر . للتحقق من ذلك ، نحتاج إلى تحميل هذا المستند بالكامل. لذلك يمكن أن تؤدي هذه الطريقة إلى عقوبة الأداء.
public static bool IsEncrypted(string filePath, out Document document)
معامل | يكتب | وصف |
---|---|---|
filePath | String | مسار الملف. |
document | Document& | المستند الذي تم تحميله. |
قيمة الإرجاع
يتم إرجاع صحيح إذا تم تشفير المستند أو خطأ.
أمثلة
يوضح كيفية التحقق مما إذا كان المستند محميًا بكلمة مرور.
// المسار إلى دليل المستندات.
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.");
}
أنظر أيضا
- class Document
- مساحة الاسم Aspose.Note
- المجسم Aspose.Note
IsEncrypted(string, string, out Document)
للتحقق مما إذا كان مستند من ملف مشفر . للتحقق من ذلك ، نحتاج إلى تحميل هذا المستند بالكامل. لذلك يمكن أن تؤدي هذه الطريقة إلى عقوبة الأداء.
public static bool IsEncrypted(string filePath, string password, out Document document)
معامل | يكتب | وصف |
---|---|---|
filePath | String | مسار الملف. |
password | String | كلمة المرور لفك تشفير مستند. |
document | Document& | المستند الذي تم تحميله. |
قيمة الإرجاع
يتم إرجاع صحيح إذا تم تشفير المستند أو خطأ.
أمثلة
يوضح كيفية التحقق مما إذا كان المستند محميًا بكلمة مرور.
// المسار إلى دليل المستندات.
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.");
}
أنظر أيضا
- class Document
- مساحة الاسم Aspose.Note
- المجسم Aspose.Note