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
34
34
``` csharp
35
35
static void Main (string [] args )
36
36
{
37
-
38
37
PdfFormatProvider provider = new PdfFormatProvider ();
39
38
RadFixedDocument document = provider .Import (File .ReadAllBytes (" unsigned.pdf" ));
40
39
@@ -73,7 +72,7 @@ Here is a code snippet demonstrating these steps and including the creation of a
73
72
provider .Export (document , output );
74
73
}
75
74
76
- isSigned = CheckSignedDocument (document );
75
+ isSigned = CheckSignedDocument (document );
77
76
Debug .WriteLine (isSigned .ToString ());
78
77
Process .Start (new ProcessStartInfo () { FileName = signedDocumentFilePath , UseShellExecute = true });
79
78
}
@@ -101,10 +100,10 @@ Here is a code snippet demonstrating these steps and including the creation of a
101
100
Debug .WriteLine (" Signed on: " + properties .TimeOfSigning .ToString ());
102
101
isSigned = true ;
103
102
break ;
104
-
105
103
}
106
104
}
107
105
}
106
+
108
107
return isSigned ;
109
108
}
110
109
```
You can’t perform that action at this time.
0 commit comments