 | RemDocumentUpdateSingedDocument Method |
Paperwork .Net Kütüphanesi
Dokümandaki imza bilgilerini veritabanına kaydeder.
Namespace:
Paperwork.Connect
Assembly:
Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntaxpublic a_GenericResult UpdateSingedDocument(
ObjectID objectId,
bool isSigned,
bool isTimeStamped
)
Parameters
- objectId
- Type: ObjectID
Güncellenecek dokümanın nesne numarası - isSigned
- Type: SystemBoolean
If set to true, then ; otherwise, . - isTimeStamped
- Type: SystemBoolean
If set to true, then ; otherwise, .
Return Value
Type:
a_GenericResulta_GenericResult nesnesi içinde , ErrorCode=0 ise işlem başarılıdır. Aksi taktirde Result ve Message alanları kontrol ediniz.
Examples
public void UpdateSignedDocument()
{
ObjectID objectId = new ObjectID("FF00010000015E5A");
bool isSigned = false;
bool isTimeStamped = false;
a_GenericResult usd = p.rDocument.UpdateSingedDocument(objectId, isSigned, isTimeStamped);
if (usd.ErrorCode != 0)
throw new Exception(usd.Message);
}
See Also