File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ Here is a code snippet demonstrating these steps and including the creation of a
3434``` csharp
3535 static void Main (string [] args )
3636 {
37-
3837 PdfFormatProvider provider = new PdfFormatProvider ();
3938 RadFixedDocument document = provider .Import (File .ReadAllBytes (" unsigned.pdf" ));
4039
@@ -73,7 +72,7 @@ Here is a code snippet demonstrating these steps and including the creation of a
7372 provider .Export (document , output );
7473 }
7574
76- isSigned = CheckSignedDocument (document );
75+ isSigned = CheckSignedDocument (document );
7776 Debug .WriteLine (isSigned .ToString ());
7877 Process .Start (new ProcessStartInfo () { FileName = signedDocumentFilePath , UseShellExecute = true });
7978 }
@@ -101,10 +100,10 @@ Here is a code snippet demonstrating these steps and including the creation of a
101100 Debug .WriteLine (" Signed on: " + properties .TimeOfSigning .ToString ());
102101 isSigned = true ;
103102 break ;
104-
105103 }
106104 }
107105 }
106+
108107 return isSigned ;
109108 }
110109```
You can’t perform that action at this time.
0 commit comments