Class DigitalSignatureFieldIterator
DigitalSignatureFieldIterator is an iterator type that can be used to traverse a list of digital signature form fields in a PDF document.
Implements
Inherited Members
Namespace: pdftron.PDF
Assembly: PDFNet.dll
Syntax
public class DigitalSignatureFieldIterator : IDisposable
Methods
Current()
Gets the current DigitalSignatureField
object
Declaration
public DigitalSignatureField Current()
Returns
Type | Description |
---|---|
DigitalSignatureField | current |
Dispose()
Releases all resources used by the DigitalSignatureFieldIterator
Declaration
public override sealed void Dispose()
Dispose(bool)
Declaration
[HandleProcessCorruptedStateExceptions]
protected virtual void Dispose(bool A_0)
Parameters
Type | Name | Description |
---|---|---|
bool | A_0 |
Equals(object)
Determines if equals to the given object
Declaration
public bool Equals(object o)
Parameters
Type | Name | Description |
---|---|---|
object | o | given object |
Returns
Type | Description |
---|---|
bool | true if equals to the given object |
~DigitalSignatureFieldIterator()
Allows a DigitalSignatureFieldIterator to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
Declaration
protected ~DigitalSignatureFieldIterator()
HasNext()
Determines if the iteration has more elements.
Declaration
public bool HasNext()
Returns
Type | Description |
---|---|
bool | true if the iteration has more elements. |
Next()
iterates to the next object
Declaration
public void Next()
Operators
operator ==(DigitalSignatureFieldIterator, DigitalSignatureFieldIterator)
Equality operator check whether two DigitalSignatureFieldIterator objects are the same
Declaration
public static bool operator ==(DigitalSignatureFieldIterator l, DigitalSignatureFieldIterator r)
Parameters
Type | Name | Description |
---|---|---|
DigitalSignatureFieldIterator | l | a |
DigitalSignatureFieldIterator | r | a |
Returns
Type | Description |
---|---|
bool | true, if both objects are equal |
operator !=(DigitalSignatureFieldIterator, DigitalSignatureFieldIterator)
Inequality operator checks whether two DigitalSignatureFieldIterator objects are different
Declaration
public static bool operator !=(DigitalSignatureFieldIterator l, DigitalSignatureFieldIterator r)
Parameters
Type | Name | Description |
---|---|---|
DigitalSignatureFieldIterator | l | a |
DigitalSignatureFieldIterator | r | a |
Returns
Type | Description |
---|---|
bool | true, if both objects are not equal |