ความปลอดภัยของคลาส
Info
แสดงถึงปลั๊กอิน Documentize.Security.
public sealed class Security
การสืบทอด
สมาชิกที่สืบทอด
- object.GetType(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
ตัวอย่าง
ตัวอย่างแสดงวิธีการเข้ารหัสเอกสาร PDF.
// สร้าง Security
var plugin = new Security();
// สร้างวัตถุ EncryptionOptions เพื่อตั้งค่าคำสั่ง
var opt = new EncryptionOptions("123456", "qwerty");
// เพิ่มเส้นทางไฟล์นำเข้า
opt.AddInput(new FileDataSource(inputPath));
// ตั้งค่าเส้นทางไฟล์ส่งออก
opt.AddOutput(new FileDataSource(outputPath));
// ทำการประมวลผล
plugin.Process(opt);
ตัวอย่างแสดงวิธีการถอดรหัสเอกสาร PDF.
// สร้าง Security
var plugin = new Security();
// สร้างวัตถุ DecryptionOptions เพื่อตั้งค่าคำสั่ง
var opt = new DecryptionOptions("123456");
// เพิ่มเส้นทางไฟล์นำเข้า
opt.AddInput(new FileDataSource(inputPath));
// ตั้งค่าเส้นทางไฟล์ส่งออก
opt.AddOutput(new FileDataSource(outputPath));
// ทำการประมวลผล
plugin.Process(opt);
ตัวสร้าง
Security()
public Security()
วิธีการ
Process(IPluginOptions)
เริ่มการประมวลผล Documentize.Security ด้วยพารามิเตอร์ที่กำหนด.
public ResultContainer Process(IPluginOptions options)
พารามิเตอร์
options
IPluginOptions: วัตถุที่มีตัวเลือกที่มีคำสั่งสำหรับ Documentize.Security.
คืนค่า
ResultContainer : วัตถุ ResultContainer ที่มีผลลัพธ์ของการดำเนินการ.
ข้อยกเว้น
Namespace: Documentize
Assembly: Documentize.dll