Example #1
0
 public DocumentCreationInfo(string[] tos, string name, string message, FileInfo[] fileInfos, SignatureType signatureType, SignatureFlow signatureFlow)
 {
     this.tos       = tos;
     this.name      = name;
     this.message   = message;
     this.fileInfos = fileInfos;
     this.signatureTypeSpecified = true;
     this.signatureType          = signatureType;
     this.signatureFlowSpecified = true;
     this.signatureFlow          = signatureFlow;
 }
Example #2
0
 public LibraryDocumentCreationInfo(string name, FileInfo[] fileInfos, SignatureType signatureType, SignatureFlow signatureFlow, LibrarySharingMode librarySharingMode, System.Nullable <LibraryTemplateType>[] libraryTemplateTypes)
 {
     this.name                 = name;
     this.fileInfos            = fileInfos;
     this.signatureType        = signatureType;
     this.signatureFlow        = signatureFlow;
     this.librarySharingMode   = librarySharingMode;
     this.libraryTemplateTypes = libraryTemplateTypes;
 }