-
Notifications
You must be signed in to change notification settings - Fork 3
/
PDFormsNet.xml
1051 lines (1048 loc) · 39.4 KB
/
PDFormsNet.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>
PDFormsNet
</name>
</assembly>
<members>
<member name="T:PDFormsNet.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.Resources.barbutton">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.Resources.transparent1">
<summary>
Looks up a localized resource of type System.Drawing.Bitmap.
</summary>
</member>
<member name="T:PDFormsNet.My.Resources.resourceScripts">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.resourceScripts.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.resourceScripts.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.resourceScripts.pdf_email_php">
<summary>
Looks up a localized string similar to <?php
header('Content-type: application/vnd.fdf');
//DO NOT REMOVE THE FOLLOWING COMMENTS
//PHP MAIL SCRIPT
//NK-INC.COM, PDFEmail.net, FDFToolkit.net - All rights reserved.
//Email: sales@nk-inc.com
//Support: support@nk-inc.com
//Support: http://www.NK-INC.com/support/
//WWW: http://www.pdfemail.net/
//DATE:<DATE>
//DO NOT REDISTRIBUTE - PRIVATE SOURCE CODE - NOT FOR PUBLIC
//NEED HELP? CONTACT PDFEMAIL.NET SUPPORT (support@nk-inc.com)
//Copyright(C) 2016 - NK-INC.COM, PDFEmail.net, FDFToolkit [rest of string was truncated]";.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.resourceScripts.pdf_email_php_pear">
<summary>
Looks up a localized string similar to <?php
header('Content-type: application/vnd.fdf');
require_once "Mail.php";
require_once "Mail/mime.php";
//DO NOT REMOVE THE FOLLOWING COMMENTS
//PHP PEAR SCRIPT
//NK-INC.COM, PDFEmail.net, FDFToolkit.net - All rights reserved.
//Email: sales@nk-inc.com
//Support: support@nk-inc.com
//Support: http://www.NK-INC.com/support/
//WWW: http://www.pdfemail.net/
//DATE:<DATE>
//DO NOT REDISTRIBUTE - PRIVATE SOURCE CODE - NOT FOR PUBLIC
//NEED HELP? CONTACT PDFEMAIL.NET SUPPORT (support@nk-inc.com)
[rest of string was truncated]";.
</summary>
</member>
<member name="P:PDFormsNet.My.Resources.resourceScripts.scriptPdfEmailNet20">
<summary>
Looks up a localized string similar to <%@ Page Language="VB" Debug="TRUE" %>
<%@ Import Namespace="System.Net.Mail" %>
<%@ Import Namespace="System.IO" %>
<script runat="server">
'********************************************************************
'**** EMAIL PDF SUBMISSIONS WITH ASP.NET w/o 3rd Party Tools *****
'**** NK-INC - Nicholas Kowalewicz *****
'**** http://www.nk-inc.com/support/ *****
'**** NK-INC SUPPORT (support@nk-inc.com) [rest of string was truncated]";.
</summary>
</member>
<member name="M:PDFormsNet.clsEmail.clsEmail_HTML.ConvertToBase64String(System.Byte[])">
<summary>
Converts a byte array to base64 string
</summary>
<param name="Filebytes">File bytes array</param>
<returns>Base64 String</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsEmail.clsEmail_HTML.ConvertToBase64String(System.Drawing.Image,System.Drawing.Imaging.ImageFormat)">
<summary>
Converts an System.Drawing.Image to Base64 string
</summary>
<param name="image">System.Drawing.Image</param>
<param name="newFormat">System.Drawing.Imaging.ImageFormat (JPG/GIF/PNG/BMP/EMF only)</param>
<returns>Base64 string of Image</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsEmail.clsEmail_HTML.ConvertToBase64String(System.Drawing.Image)">
<summary>
Converts an System.Drawing.Image to Base64 string
</summary>
<param name="image">System.Drawing.Image</param>
<returns>Base64 string of Image</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsEmail.clsEmail_HTML.ConvertToBase64Byte(System.Byte[])">
<summary>
Converts an Byte Array to Base64 string
</summary>
<param name="FileBytes">System.Drawing.Image</param>
<returns>Base64 string</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsEmail.clsEmail_HTML.ConvertFromBase64ToString(System.String,System.Text.Encoding)">
<summary>
Converts a Base64 encoded string to a default enocoded string
</summary>
<param name="strEncodedBase64">Base64 encoded string to convert</param>
<param name="ToEncoding">To specific encoding (UTF-8)</param>
<returns>Encoded String</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsEmail.clsEmail_HTML.ConvertFromBase64ToByte(System.String,System.Text.Encoding)">
<summary>
Converts a Base64 encoded string to a default enocoded byte array
</summary>
<param name="strEncodedBase64">Base64 encoded string to convert</param>
<param name="ToEncoding">To specific encoding (UTF-8)</param>
<returns>Encoded Byte Array</returns>
<remarks></remarks>
</member>
<member name="T:PDFormsNet.Encryption.Hash">
<summary>
Hash functions are fundamental to modern cryptography. These functions map binary
strings of an arbitrary length to small binary strings of a fixed length, known as
hash values. A cryptographic hash function has the property that it is computationally
infeasible to find two distinct inputs that hash to the same value. Hash functions
are commonly used with digital signatures and for data integrity.
</summary>
</member>
<member name="T:PDFormsNet.Encryption.Hash.Provider">
<summary>
Type of hash; some are security oriented, others are fast and simple
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Hash.Provider.CRC32">
<summary>
Cyclic Redundancy Check provider, 32-bit
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Hash.Provider.SHA1">
<summary>
Secure Hashing Algorithm provider, SHA-1 variant, 160-bit
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Hash.Provider.SHA256">
<summary>
Secure Hashing Algorithm provider, SHA-2 variant, 256-bit
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Hash.Provider.SHA384">
<summary>
Secure Hashing Algorithm provider, SHA-2 variant, 384-bit
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Hash.Provider.SHA512">
<summary>
Secure Hashing Algorithm provider, SHA-2 variant, 512-bit
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Hash.Provider.MD5">
<summary>
Message Digest algorithm 5, 128-bit
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Hash.#ctor(PDFormsNet.Encryption.Hash.Provider)">
<summary>
Instantiate a new hash of the specified type
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Hash.Value">
<summary>
Returns the previously calculated hash
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Hash.Calculate(System.IO.Stream@)">
<summary>
Calculates hash on a System.IO.Stream of arbitrary length
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Hash.Calculate(PDFormsNet.Encryption.clsData)">
<summary>
Calculates hash for fixed length <see cref="N:System.Data"/>
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Hash.Calculate(PDFormsNet.Encryption.clsData,PDFormsNet.Encryption.clsData)">
<summary>
Calculates hash for a string with a prefixed salt value.
A "salt" is random data prefixed to every hashed value to prevent
common dictionary attacks.
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Hash.CalculatePrivate(System.Byte[])">
<summary>
Calculates hash for an array of bytes
</summary>
</member>
<member name="T:PDFormsNet.Encryption.Symmetric">
<summary>
Symmetric encryption uses a single key to encrypt and decrypt.
Both parties (encryptor and decryptor) must share the same secret key.
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Symmetric.Provider.DES">
<summary>
The Data Encryption Standard provider supports a 64 bit key only
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Symmetric.Provider.RC2">
<summary>
The Rivest Cipher 2 provider supports keys ranging from 40 to 128 bits, default is 128 bits
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Symmetric.Provider.Rijndael">
<summary>
The Rijndael (also known as AES) provider supports keys of 128, 192, or 256 bits with a default of 256 bits
</summary>
</member>
<member name="F:PDFormsNet.Encryption.Symmetric.Provider.TripleDES">
<summary>
The TripleDES provider (also known as 3DES) supports keys of 128 or 192 bits with a default of 192 bits
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.#ctor(PDFormsNet.Encryption.Symmetric.Provider,System.Boolean)">
<summary>
Instantiates a new symmetric encryption object using the specified provider.
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Symmetric.KeySizeBytes">
<summary>
Key size in bytes. We use the default key size for any given provider; if you
want to force a specific key size, set this property
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Symmetric.KeySizeBits">
<summary>
Key size in bits. We use the default key size for any given provider; if you
want to force a specific key size, set this property
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Symmetric.Key">
<summary>
The key used to encrypt/decrypt data
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Symmetric.IntializationVector">
<summary>
Using the default Cipher Block Chaining (CBC) mode, all data blocks are processed using
the value derived from the previous block; the first data block has no previous data block
to use, so it needs an InitializationVector to feed the first block
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.RandomInitializationVector">
<summary>
generates a random Initialization Vector, if one was not provided
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.RandomKey">
<summary>
generates a random Key, if one was not provided
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.ValidateKeyAndIv(System.Boolean)">
<summary>
Ensures that _crypto object has valid Key and IV
prior to any attempt to encrypt/decrypt anything
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Encrypt(PDFormsNet.Encryption.clsData,PDFormsNet.Encryption.clsData)">
<summary>
Encrypts the specified Data using provided key
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Encrypt(PDFormsNet.Encryption.clsData)">
<summary>
Encrypts the specified Data using preset key and preset initialization vector
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Encrypt(System.IO.Stream,PDFormsNet.Encryption.clsData,PDFormsNet.Encryption.clsData)">
<summary>
Encrypts the System.IO.Stream to memory using provided key and provided initialization vector
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Encrypt(System.IO.Stream,PDFormsNet.Encryption.clsData)">
<summary>
Encrypts the System.IO.Stream to memory using specified key
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Encrypt(System.IO.Stream)">
<summary>
Encrypts the specified System.IO.Stream to memory using preset key and preset initialization vector
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Decrypt(PDFormsNet.Encryption.clsData,PDFormsNet.Encryption.clsData)">
<summary>
Decrypts the specified data using provided key and preset initialization vector
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Decrypt(System.IO.Stream,PDFormsNet.Encryption.clsData)">
<summary>
Decrypts the specified System.IO.Stream using provided key and preset initialization vector
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Decrypt(System.IO.Stream)">
<summary>
Decrypts the specified System.IO.Stream using preset key and preset initialization vector
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Symmetric.Decrypt(PDFormsNet.Encryption.clsData)">
<summary>
Decrypts the specified data using preset key and preset initialization vector
</summary>
</member>
<member name="T:PDFormsNet.Encryption.Asymmetric">
<summary>
Asymmetric encryption uses a pair of keys to encrypt and decrypt.
There is a "public" key which is used to encrypt. Decrypting, on the other hand,
requires both the "public" key and an additional "private" key. The advantage is
that people can send you encrypted messages without being able to decrypt them.
</summary>
<remarks>
The only provider supported is the <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider"/>
</remarks>
</member>
<member name="T:PDFormsNet.Encryption.Asymmetric.PublicKey">
<summary>
Represents a public encryption key. Intended to be shared, it
contains only the Modulus and Exponent.
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PublicKey.ToConfigSection">
<summary>
Returns *.config file XML section representing this public key
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PublicKey.ExportToConfigFile(System.String)">
<summary>
Writes the *.config file representation of this public key to a file
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PublicKey.LoadFromXml(System.String)">
<summary>
Loads the public key from its XML string
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PublicKey.ToParameters">
<summary>
Converts this public key to an RSAParameters object
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PublicKey.ToXml">
<summary>
Converts this public key to its XML string representation
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PublicKey.ExportToXmlFile(System.String)">
<summary>
Writes the Xml representation of this public key to a file
</summary>
</member>
<member name="T:PDFormsNet.Encryption.Asymmetric.PrivateKey">
<summary>
Represents a private encryption key. Not intended to be shared, as it
contains all the elements that make up the key.
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PrivateKey.ToParameters">
<summary>
Converts this private key to an RSAParameters object
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PrivateKey.ToConfigSection">
<summary>
Returns *.config file XML section representing this private key
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PrivateKey.ExportToConfigFile(System.String)">
<summary>
Writes the *.config file representation of this private key to a file
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PrivateKey.LoadFromXml(System.String)">
<summary>
Loads the private key from its XML string
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PrivateKey.ToXml">
<summary>
Converts this private key to its XML string representation
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.PrivateKey.ExportToXmlFile(System.String)">
<summary>
Writes the Xml representation of this private key to a file
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.#ctor">
<summary>
Instantiates a new asymmetric encryption session using the default key size;
this is usally 1024 bits
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.#ctor(System.Int32)">
<summary>
Instantiates a new asymmetric encryption session using a specific key size
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Asymmetric.KeyContainerName">
<summary>
Sets the name of the key container used to store this key on disk; this is an
unavoidable side effect of the underlying Microsoft CryptoAPI.
</summary>
<remarks>
http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/q322/3/71.asp&NoWebContent=1
</remarks>
</member>
<member name="P:PDFormsNet.Encryption.Asymmetric.KeySizeBits">
<summary>
Returns the current key size, in bits
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Asymmetric.KeySizeMaxBits">
<summary>
Returns the maximum supported key size, in bits
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Asymmetric.KeySizeMinBits">
<summary>
Returns the minimum supported key size, in bits
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Asymmetric.KeySizeStepBits">
<summary>
Returns valid key step sizes, in bits
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Asymmetric.DefaultPublicKey">
<summary>
Returns the default public key as stored in the *.config file
</summary>
</member>
<member name="P:PDFormsNet.Encryption.Asymmetric.DefaultPrivateKey">
<summary>
Returns the default private key as stored in the *.config file
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.GenerateNewKeyset(PDFormsNet.Encryption.Asymmetric.PublicKey@,PDFormsNet.Encryption.Asymmetric.PrivateKey@)">
<summary>
Generates a new public/private key pair as objects
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.GenerateNewKeyset(System.String@,System.String@)">
<summary>
Generates a new public/private key pair as XML strings
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.Encrypt(PDFormsNet.Encryption.clsData)">
<summary>
Encrypts data using the default public key
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.Encrypt(PDFormsNet.Encryption.clsData,PDFormsNet.Encryption.Asymmetric.PublicKey)">
<summary>
Encrypts data using the provided public key
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.Encrypt(PDFormsNet.Encryption.clsData,System.String)">
<summary>
Encrypts data using the provided public key as XML
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.Decrypt(PDFormsNet.Encryption.clsData)">
<summary>
Decrypts data using the default private key
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.Decrypt(PDFormsNet.Encryption.clsData,PDFormsNet.Encryption.Asymmetric.PrivateKey)">
<summary>
Decrypts data using the provided private key
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.Decrypt(PDFormsNet.Encryption.clsData,System.String)">
<summary>
Decrypts data using the provided private key as XML
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Asymmetric.GetRSAProvider">
<summary>
gets the default RSA provider using the specified key size;
note that Microsoft's CryptoAPI has an underlying file system dependency that is unavoidable
</summary>
<remarks>
http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/q322/3/71.asp&NoWebContent=1
</remarks>
</member>
<member name="T:PDFormsNet.Encryption.clsData">
<summary>
represents Hex, Byte, Base64, or String data to encrypt/decrypt;
use the .Text property to set/get a string representation
use the .Hex property to set/get a string-based Hexadecimal representation
use the .Base64 to set/get a string-based Base64 representation
</summary>
</member>
<member name="F:PDFormsNet.Encryption.clsData.DefaultEncoding">
<summary>
Determines the default text encoding across ALL Data instances
</summary>
</member>
<member name="F:PDFormsNet.Encryption.clsData.Encoding">
<summary>
Determines the default text encoding for this Data instance
</summary>
</member>
<member name="M:PDFormsNet.Encryption.clsData.#ctor">
<summary>
Creates new, empty encryption data
</summary>
</member>
<member name="M:PDFormsNet.Encryption.clsData.#ctor(System.Byte[])">
<summary>
Creates new encryption data with the specified byte array
</summary>
</member>
<member name="M:PDFormsNet.Encryption.clsData.#ctor(System.String)">
<summary>
Creates new encryption data with the specified string;
will be converted to byte array using default encoding
</summary>
</member>
<member name="M:PDFormsNet.Encryption.clsData.#ctor(System.String,System.Text.Encoding)">
<summary>
Creates new encryption data using the specified string and the
specified encoding to convert the string to a byte array.
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.IsEmpty">
<summary>
returns true if no data is present
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.StepBytes">
<summary>
allowed step interval, in bytes, for this data; if 0, no limit
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.StepBits">
<summary>
allowed step interval, in bits, for this data; if 0, no limit
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.MinBytes">
<summary>
minimum number of bytes allowed for this data; if 0, no limit
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.MinBits">
<summary>
minimum number of bits allowed for this data; if 0, no limit
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.MaxBytes">
<summary>
maximum number of bytes allowed for this data; if 0, no limit
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.MaxBits">
<summary>
maximum number of bits allowed for this data; if 0, no limit
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.Bytes">
<summary>
Returns the byte representation of the data;
This will be padded to MinBytes and trimmed to MaxBytes as necessary!
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.Text">
<summary>
Sets or returns text representation of bytes using the default text encoding
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.Hex">
<summary>
Sets or returns Hex string representation of this data
</summary>
</member>
<member name="P:PDFormsNet.Encryption.clsData.Base64">
<summary>
Sets or returns Base64 string representation of this data
</summary>
</member>
<member name="M:PDFormsNet.Encryption.clsData.ToString">
<summary>
Returns text representation of bytes using the default text encoding
</summary>
</member>
<member name="M:PDFormsNet.Encryption.clsData.ToBase64">
<summary>
returns Base64 string representation of this data
</summary>
</member>
<member name="M:PDFormsNet.Encryption.clsData.ToHex">
<summary>
returns Hex string representation of this data
</summary>
</member>
<member name="T:PDFormsNet.Encryption.Utils">
<summary>
Friend class for shared utility methods used by multiple Encryption classes
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Utils.ToHex(System.Byte[])">
<summary>
converts an array of bytes to a string Hex representation
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Utils.FromHex(System.String)">
<summary>
converts from a string Hex representation to an array of bytes
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Utils.FromBase64(System.String)">
<summary>
converts from a string Base64 representation to an array of bytes
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Utils.ToBase64(System.Byte[])">
<summary>
converts from an array of bytes to a string Base64 representation
</summary>
</member>
<member name="M:PDFormsNet.Encryption.Utils.GetXmlElement(System.String,System.String)">
<summary>
retrieve an element from an XML string
</summary>
</member>
<member name="T:PDFormsNet.clsPdfDirectory2Csv">
<summary>
Call clsPdfDirectory2Csv.createCsv("C:\path\to\pdf\directory\")
</summary>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsPdfEdit.Add_Submit_Button(System.Byte[],System.Windows.Forms.TextBox,System.Windows.Forms.ComboBox,System.Windows.Forms.TextBox,System.Windows.Forms.TextBox,System.Windows.Forms.TextBox,System.Windows.Forms.TextBox,System.Windows.Forms.TextBox,System.Windows.Forms.ComboBox,System.Windows.Forms.ComboBox,System.Windows.Forms.TextBox,System.Windows.Forms.ComboBox,System.Windows.Forms.ComboBox,System.Windows.Forms.ComboBox,System.Windows.Forms.ComboBox)">
<summary>
Adds a Submit Button to Existing PDF Form
</summary>
<param name="PDFForm">Byte Array containing Existing PDF Form to add a button to</param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsPdfEdit.Download_RestrictedFile(System.String)">
<summary>
Downloads Restricted File into a Stream
</summary>
<param name="PDF_URL">Name of PDF or File to download</param>
<returns>Stream containing restricted file</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsPdfEdit.Download_RestrictedFile(System.String,System.String,System.String)">
<summary>
Downloads Restricted File into a Stream
</summary>
<param name="PDF_URL">Name of PDF or File to download</param>
<param name="Username">Credential Username</param>
<param name="Password">Credential Password</param>
<returns>Stream containing restricted file</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsPdfEdit.Download_RestrictedFile(System.String,System.String,System.String,System.String)">
<summary>
Downloads Restricted File into a Stream
</summary>
<param name="PDF_URL">Name of PDF or File to download</param>
<param name="Username">Credential Username</param>
<param name="Password">Credential Password</param>
<param name="Domain">Credential Domain</param>
<returns>Stream containing restricted file</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsPdfEdit.PDFForceDownload(System.Byte[],System.String)">
<summary>
Forces download of PDF file
</summary>
<param name="FileBytes">Byte array of file</param>
<param name="FileName">PDF File name</param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.clsScan.WIAScanner.Scan(PDFormsNet.clsScan.ScanSettings)">
<summary>
Use scanner to scan an image (with user selecting the scanner from a dialog).
</summary>
<returns>Scanned images.</returns>
</member>
<member name="M:PDFormsNet.clsScan.WIAScanner.Scan(System.String,PDFormsNet.clsScan.ScanSettings)">
<summary>
Use scanner provided scanner id to scan an image.
</summary>
<returns>Scanned images.</returns>
</member>
<member name="M:PDFormsNet.clsScan.WIAScanner.GetDevices">
<summary>
Gets the list of available WIA devices.
</summary>
<returns></returns>
</member>
<member name="P:PDFormsNet.clsUserRect.rect">
<summary>
PDF Rectangle
</summary>
<returns></returns>
</member>
<member name="M:PDFormsNet.clsUserRect.rectScreen">
<summary>
Screen Rectangle
</summary>
<returns></returns>
</member>
<member name="M:PDFormsNet.clsUserRect.rectPDFReversed">
<summary>
PDF Rectangle reversed
</summary>
<returns></returns>
</member>
<member name="M:PDFormsNet.clsUserRect.GetCursor(PDFormsNet.clsUserRect.PosSizableRect)">
<summary>
Get cursor for the handle
</summary>
<param name="p"></param>
<returns></returns>
</member>
<member name="T:PDFormsNet.FolderSelect.FolderSelectDialog">
<summary>
Wraps System.Windows.Forms.OpenFileDialog to make it present
a vista-style dialog.
</summary>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.#ctor(System.String)">
<summary>
Constructor
</summary>
<param name="ns">The namespace containing types to be used</param>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.#ctor(System.String,System.String)">
<summary>
Constructor
</summary>
<param name="an__1">A specific assembly name (used if the assembly name does not tie exactly with the namespace)</param>
<param name="ns">The namespace containing types to be used</param>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.GetType(System.String)">
<summary>
</summary>
<param name="typeName"></param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.New(System.String,System.Object[])">
<summary>
Create a new object of a named type passing along any params
</summary>
<param name="name">The name of the type to create</param>
<param name="parameters"></param>
<returns>An instantiated type</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.Call(System.Object,System.String,System.Object[])">
<summary>
Calls method 'func' on object 'obj' passing parameters 'parameters'
</summary>
<param name="obj">The object on which to excute function 'func'</param>
<param name="func">The function to execute</param>
<param name="parameters">The parameters to pass to function 'func'</param>
<returns>The result of the function invocation</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.Call2(System.Object,System.String,System.Object[])">
<summary>
Calls method 'func' on object 'obj' passing parameters 'parameters'
</summary>
<param name="obj">The object on which to excute function 'func'</param>
<param name="func">The function to execute</param>
<param name="parameters">The parameters to pass to function 'func'</param>
<returns>The result of the function invocation</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.CallAs(System.Type,System.Object,System.String,System.Object[])">
<summary>
Calls method 'func' on object 'obj' which is of type 'type' passing parameters 'parameters'
</summary>
<param name="type">The type of 'obj'</param>
<param name="obj">The object on which to excute function 'func'</param>
<param name="func">The function to execute</param>
<param name="parameters">The parameters to pass to function 'func'</param>
<returns>The result of the function invocation</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.CallAs2(System.Type,System.Object,System.String,System.Object[])">
<summary>
Calls method 'func' on object 'obj' which is of type 'type' passing parameters 'parameters'
</summary>
<param name="type">The type of 'obj'</param>
<param name="obj">The object on which to excute function 'func'</param>
<param name="func">The function to execute</param>
<param name="parameters">The parameters to pass to function 'func'</param>
<returns>The result of the function invocation</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.Get(System.Object,System.String)">
<summary>
Returns the value of property 'prop' of object 'obj'
</summary>
<param name="obj">The object containing 'prop'</param>
<param name="prop">The property name</param>
<returns>The property value</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.GetAs(System.Type,System.Object,System.String)">
<summary>
Returns the value of property 'prop' of object 'obj' which has type 'type'
</summary>
<param name="type">The type of 'obj'</param>
<param name="obj">The object containing 'prop'</param>
<param name="prop">The property name</param>
<returns>The property value</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.Reflector.GetEnum(System.String,System.String)">
<summary>
Returns an enum value
</summary>
<param name="typeName">The name of enum type</param>
<param name="name">The name of the value</param>
<returns>The enum value</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="P:PDFormsNet.FolderSelect.FolderSelectDialog.InitialDirectory">
<summary>
Gets/Sets the initial folder to be selected. A null value selects the current directory.
</summary>
</member>
<member name="P:PDFormsNet.FolderSelect.FolderSelectDialog.Title">
<summary>
Gets/Sets the title to show in the dialog
</summary>
</member>
<member name="P:PDFormsNet.FolderSelect.FolderSelectDialog.FileName">
<summary>
Gets the selected folder
</summary>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.ShowDialog">
<summary>
Shows the dialog
</summary>
<returns>True if the user presses OK else false</returns>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.ShowDialog(System.IntPtr)">
<summary>
Shows the dialog
</summary>
<param name="hWndOwner">Handle of the control to be parent</param>
<returns>True if the user presses OK else false</returns>
</member>
<member name="T:PDFormsNet.FolderSelect.FolderSelectDialog.WindowWrapper">
<summary>
Creates IWin32Window around an IntPtr
</summary>
</member>
<member name="M:PDFormsNet.FolderSelect.FolderSelectDialog.WindowWrapper.#ctor(System.IntPtr)">
<summary>
Constructor
</summary>
<param name="handle">Handle to wrap</param>
</member>
<member name="P:PDFormsNet.FolderSelect.FolderSelectDialog.WindowWrapper.Handle">
<summary>
Original ptr
</summary>
</member>
<member name="M:PDFormsNet.Utilities.NativeMethods.GetImage(System.Windows.Forms.WebBrowser@,System.Drawing.Image@,System.Drawing.Color)">
<summary>
Usage: Dim bitmap As New Bitmap(wb.Width, wb.Height); Utilities.NativeMethods.GetImage(wb.ActiveXInstance, bitmap, Color.Transparent);
</summary>
<param name="obj">webBrowser control</param>
<param name="destination">bitmap or image</param>
<param name="backgroundColor">color</param>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.Utilities.DrawToImage(System.Windows.Forms.WebBrowser)">
<summary>
</summary>
<param name="webBrowserControl"></param>
<returns></returns>
<remarks></remarks>
</member>
<member name="F:PDFormsNet.frmMain._debugVariable">
<summary>
DEBUG MODE VARIABLE - BOOLEAN
</summary>
<remarks>TRUE = THROW AND TRAP ERRORS; FALSE = CLEAR ERRORS</remarks>
</member>
<member name="P:PDFormsNet.frmMain.debugMode">
<summary>
DEBUG MODE METHOD - BOOLEAN
</summary>
<value>TRUE = THROW and TRAP ERRORS; FALSE = CLEAR ERRORS</value>
<returns>TRUE,FALSE</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.frmMain.HasUsageRights_PDF(System.String)">
<summary>
Checks Usage Rights from a PDF
</summary>
<param name="PDFFile">Absolute File Name</param>
<returns>Returns true if PDF has usage rights enabled</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.frmMain.HasUsageRights_PDF(System.IO.Stream)">
<summary>
Checks Usage Rights from a PDF
</summary>
<param name="PDFFile">PDF File Stream from a File Stream or Memory Stream</param>
<returns>Returns true if PDF has usage rights enabled</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.frmMain.HasUsageRights_PDF(System.Byte[])">
<summary>
Checks Usage Rights from a PDF
</summary>
<param name="PDFFile">PDF Byte Array</param>
<returns>Returns true if PDF has usage rights enabled</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.frmMain.Download_RestrictedFile(System.String)">
<summary>
Downloads Restricted File into a Stream
</summary>
<param name="PDF_URL">Name of PDF or File to download</param>
<returns>Stream containing restricted file</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.frmMain.Download_RestrictedFile(System.String,System.String,System.String)">
<summary>
Downloads Restricted File into a Stream
</summary>
<param name="PDF_URL">Name of PDF or File to download</param>
<param name="Username">Credential Username</param>
<param name="Password">Credential Password</param>
<returns>Stream containing restricted file</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.frmMain.Download_RestrictedFile(System.String,System.String,System.String,System.String)">
<summary>
Downloads Restricted File into a Stream
</summary>
<param name="PDF_URL">Name of PDF or File to download</param>
<param name="Username">Credential Username</param>
<param name="Password">Credential Password</param>
<param name="Domain">Credential Domain</param>
<returns>Stream containing restricted file</returns>
<remarks></remarks>
</member>
<member name="M:PDFormsNet.frmMain.CreateBarCode(System.Byte[],System.Int32,System.String,System.Single,System.Single,System.Int32,System.Int32)">
<summary>
Creates bar code
</summary>
<param name="pdfFile">pdfFile bytes</param>
<param name="code">10 digit code</param>
<param name="width">width of bar code</param>
<param name="height">height of bar code</param>