├── .gitignore ├── faq ├── content │ ├── faq.css │ ├── favicon.ico │ ├── images │ │ ├── AllowFileDownload.PNG │ │ ├── IEJSSettings.PNG │ │ ├── IESettings.PNG │ │ ├── UnsafePortError.PNG │ │ └── noise.png │ └── site.css └── index.html ├── installer ├── TWAIN@Web Standalone.ci └── bat │ ├── sign_exe.bat │ └── sign_installer.bat └── sources ├── PdfSharp ├── !internal │ └── Directives.cs ├── PdfSharp.Drawing.BarCodes │ ├── BarCode.cs │ ├── BarCodeRenderInfo.cs │ ├── BcgSR.cs │ ├── Code2of5Interleaved.cs │ ├── Code3of9Standard.cs │ ├── CodeBase.cs │ ├── CodeDataMatrix.cs │ ├── CodeOmr.cs │ ├── DataMatrixImage.cs │ ├── MatrixCode.cs │ ├── OmrData.cs │ ├── ThickThinBarcodeRenderer.cs │ └── enums │ │ ├── AnchorType.cs │ │ ├── CodeDirection.cs │ │ ├── CodeType.cs │ │ ├── DataMatrixEncoding.cs │ │ ├── MarkDistance.cs │ │ └── TextLocation.cs ├── PdfSharp.Drawing.Layout │ ├── XTextFormatter.cs │ └── enums │ │ └── XParagraphAlignment.cs ├── PdfSharp.Drawing.Pdf │ ├── PdfGraphicsState.cs │ ├── XGraphicsPdfRenderer.cs │ └── enums │ │ ├── DirtyFlags.cs │ │ └── StreamMode.cs ├── PdfSharp.Drawing.Shapes │ └── Shape.cs ├── PdfSharp.Drawing │ ├── FontHelper.cs │ ├── GeometryHelper.cs │ ├── GraphicsStateStack.cs │ ├── IXGraphicsRenderer.cs │ ├── ImageHelper.cs │ ├── InternalGraphicsState.cs │ ├── PdfFontOptions.cs │ ├── XBrush.cs │ ├── XBrushes.cs │ ├── XColor.cs │ ├── XColorResourceManager.cs │ ├── XColors.cs │ ├── XConvert.cs │ ├── XFont.cs │ ├── XFontFamily.cs │ ├── XFontMetrics.cs │ ├── XFontStretch.cs │ ├── XFontWeight.cs │ ├── XFontWeights.cs │ ├── XForm.cs │ ├── XGlyphTypeface.cs │ ├── XGraphics.cs │ ├── XGraphicsContainer.cs │ ├── XGraphicsPath.cs │ ├── XGraphicsPathInternals.cs │ ├── XGraphicsPathItem.cs │ ├── XGraphicsState.cs │ ├── XImage.cs │ ├── XImageFormat.cs │ ├── XKnownColorTable.cs │ ├── XLinearGradientBrush.cs │ ├── XMatrix.cs │ ├── XPdfForm.cs │ ├── XPen.cs │ ├── XPens.cs │ ├── XPoint.cs │ ├── XPrivateFontCollection.cs │ ├── XRect.cs │ ├── XSize.cs │ ├── XSolidBrush.cs │ ├── XStringFormat.cs │ ├── XStringFormats.cs │ ├── XTypeFace.cs │ ├── XUnit.cs │ ├── XVector.cs │ └── enums │ │ ├── PathStart.cs │ │ ├── XColorSpace.cs │ │ ├── XCombineMode.cs │ │ ├── XDashStyle.cs │ │ ├── XFillMode.cs │ │ ├── XFontStyle.cs │ │ ├── XGraphicRenderTarget.cs │ │ ├── XGraphicsPathItemType.cs │ │ ├── XGraphicsPdfPageOptions.cs │ │ ├── XGraphicsUnit.cs │ │ ├── XKnownColor.cs │ │ ├── XLineAlignment.cs │ │ ├── XLineCap.cs │ │ ├── XLineJoin.cs │ │ ├── XLinearGradientMode.cs │ │ ├── XMatrixOrder.cs │ │ ├── XPageDirection.cs │ │ ├── XSmoothingMode.cs │ │ └── XStringAlignment.cs ├── PdfSharp.Fonts.OpenType │ ├── ExternalHelper.cs │ ├── FontData.cs │ ├── FontDataStock.cs │ ├── GenericFontTable.cs │ ├── GlyphDataTable.cs │ ├── IRefFontTable.cs │ ├── IndexToLocationTable.cs │ ├── OpenTypeDescriptor.cs │ ├── OpenTypeFontTable.cs │ ├── OpenTypeFontWriter.cs │ ├── OpenTypeStructures.cs │ ├── TableDirectoryEntry.cs │ └── enums │ │ ├── FontTechnology.cs │ │ ├── TableTag.cs │ │ └── TableTagNames.cs ├── PdfSharp.Fonts │ ├── AdobeGlyphList20.cs │ ├── AdobeGlyphListForNewFonts.cs │ ├── CMapInfo.cs │ ├── FontDescriptor.cs │ ├── FontDescriptorStock.cs │ └── FontWriter.cs ├── PdfSharp.Forms │ ├── ColorComboBox.cs │ ├── DeviceInfos.cs │ ├── PagePreview.cs │ ├── PagePreview.resx │ ├── PagePreviewCanvas.cs │ ├── PagePreviewCanvas.resx │ └── enums │ │ ├── RenderMode.cs │ │ └── Zoom.cs ├── PdfSharp.Internal │ ├── Calc.cs │ ├── ColorHelper.cs │ ├── DoubleUtil.cs │ ├── NativeMethods.cs │ └── TokenizerHelper.cs ├── PdfSharp.Pdf.AcroForms │ ├── PdfAcroField.cs │ ├── PdfAcroForm.cs │ ├── PdfButtonField.cs │ ├── PdfCheckBoxField.cs │ ├── PdfChoiceField.cs │ ├── PdfComboBoxField.cs │ ├── PdfGenericField.cs │ ├── PdfListBoxField.cs │ ├── PdfPushButtonField.cs │ ├── PdfRadioButtonField.cs │ ├── PdfSignatureField.cs │ ├── PdfTextField.cs │ └── enums │ │ └── PdfAcroFieldFlags.cs ├── PdfSharp.Pdf.Actions │ ├── PdfAction.cs │ └── enums │ │ └── PdfNamedActionNames.cs ├── PdfSharp.Pdf.Advanced │ ├── IContentStream.cs │ ├── PdfCIDFont.cs │ ├── PdfCatalog.cs │ ├── PdfContent.cs │ ├── PdfContents.cs │ ├── PdfDictionaryWithContentStream.cs │ ├── PdfExtGState.cs │ ├── PdfExtGStateTable.cs │ ├── PdfFont.cs │ ├── PdfFontDescriptor.cs │ ├── PdfFontTable.cs │ ├── PdfFormXObject.cs │ ├── PdfFormXObjectTable.cs │ ├── PdfGroupAttributes.cs │ ├── PdfImage.FaxEncode.cs │ ├── PdfImage.cs │ ├── PdfImageTable.cs │ ├── PdfImportedObjectTable.cs │ ├── PdfInternals.cs │ ├── PdfObjectInternals.cs │ ├── PdfPageInheritableObjects.cs │ ├── PdfReference.cs │ ├── PdfResourceMap.cs │ ├── PdfResourceTable.cs │ ├── PdfResources.cs │ ├── PdfShading.cs │ ├── PdfShadingPattern.cs │ ├── PdfShadingTable.cs │ ├── PdfSoftMask.cs │ ├── PdfTilingPattern.cs │ ├── PdfToUnicodeMap.cs │ ├── PdfTrailer.cs │ ├── PdfTransparencyGroupAttributes.cs │ ├── PdfTrueTypeFont.cs │ ├── PdfType0Font.cs │ ├── PdfType1Font.cs │ └── PdfXObject.cs ├── PdfSharp.Pdf.Annotations │ ├── PdfAnnotation.cs │ ├── PdfAnnotations.cs │ ├── PdfGenericAnnotation.cs │ ├── PdfLinkAnnotation.cs │ ├── PdfRubberStampAnnotation.cs │ ├── PdfTextAnnotation.cs │ ├── PdfWidgetAnnotation.cs │ └── enums │ │ ├── PdfAnnotationFlags.cs │ │ ├── PdfRubberStampAnnotationIcon.cs │ │ └── PdfTextAnnotationIcon.cs ├── PdfSharp.Pdf.Content.Objects │ ├── CObjects.cs │ ├── Operators.cs │ └── enum │ │ ├── OpCodeFlags.cs │ │ └── OpCodeName.cs ├── PdfSharp.Pdf.Content │ ├── CLexer.cs │ ├── CParser.cs │ ├── Chars.cs │ ├── ContentReader.cs │ ├── ContentReaderException.cs │ ├── ContentWriter.cs │ └── enums │ │ └── Symbol.cs ├── PdfSharp.Pdf.Filters │ ├── ASCII85Decode.cs │ ├── ASCIIHexDecode.cs │ ├── Filter.cs │ ├── Filtering.cs │ ├── FlateDecode.cs │ └── LzwDecode.cs ├── PdfSharp.Pdf.IO │ ├── Chars.cs │ ├── Lexer.cs │ ├── Parser.cs │ ├── PdfReader.cs │ ├── PdfReaderException.cs │ ├── PdfWriter.cs │ ├── ShiftStack.cs │ └── enums │ │ ├── PasswordValidity.cs │ │ ├── PdfDocumentOpenMode.cs │ │ ├── PdfWriterLayout.cs │ │ ├── PdfWriterOptions.cs │ │ └── Symbol.cs ├── PdfSharp.Pdf.Internal │ ├── AnsiEncoding.cs │ ├── ColorSpaceHelper.cs │ ├── DocEncoding.cs │ ├── GlobalObjectTable.cs │ ├── PdfEncoders.cs │ ├── RawEncoding.cs │ ├── RawUnicodeEncoding.cs │ └── ThreadLocalStorage.cs ├── PdfSharp.Pdf.Printing │ └── PdfFilePrinter.cs ├── PdfSharp.Pdf.Security │ ├── PdfSecurityHandler.cs │ ├── PdfSecuritySettings.cs │ ├── PdfStandardSecurityHandler.cs │ └── enums │ │ ├── PdfDocumentSecurity.cs │ │ └── PdfUserAccessPermission.cs ├── PdfSharp.Pdf │ ├── EntryInfoAttribute.cs │ ├── KeysBase.cs │ ├── KeysMeta.cs │ ├── PdfArray.cs │ ├── PdfBoolean.cs │ ├── PdfBooleanObject.cs │ ├── PdfCustomValue.cs │ ├── PdfCustomValues.cs │ ├── PdfDate.cs │ ├── PdfDictionary.cs │ ├── PdfDocument.cs │ ├── PdfDocumentInformation.cs │ ├── PdfDocumentOptions.cs │ ├── PdfDocumentSettings.cs │ ├── PdfInteger.cs │ ├── PdfIntegerObject.cs │ ├── PdfItem.cs │ ├── PdfLiteral.cs │ ├── PdfName.cs │ ├── PdfNameObject.cs │ ├── PdfNull.cs │ ├── PdfNullObject.cs │ ├── PdfNumber.cs │ ├── PdfNumberObject.cs │ ├── PdfObject.cs │ ├── PdfObjectID.cs │ ├── PdfOutline.cs │ ├── PdfPage.cs │ ├── PdfPages.cs │ ├── PdfReal.cs │ ├── PdfRealObject.cs │ ├── PdfRectangle.cs │ ├── PdfReferenceTable.cs │ ├── PdfString.cs │ ├── PdfStringObject.cs │ ├── PdfUInteger.cs │ ├── PdfUIntegerObject.cs │ ├── PdfViewerPreferences.cs │ ├── TrimMargins.cs │ └── enums │ │ ├── DocumentState.cs │ │ ├── PdfColorMode.cs │ │ ├── PdfCustomValueCompression.cs │ │ ├── PdfFontEmbedding.cs │ │ ├── PdfFontEncoding.cs │ │ ├── PdfOutlineStyle.cs │ │ ├── PdfPageLayout.cs │ │ ├── PdfPageMode.cs │ │ ├── PdfReadingDirection.cs │ │ └── PdfTextStringEncoding.cs ├── PdfSharp.SharpZipLib │ ├── Checksums │ │ ├── Adler32.cs │ │ ├── CRC32.cs │ │ └── IChecksum.cs │ ├── ReadMe.txt │ ├── SharpZip │ │ └── SharpZipBaseException.cs │ └── Zip │ │ └── Compression │ │ ├── Deflater.cs │ │ ├── DeflaterConstants.cs │ │ ├── DeflaterEngine.cs │ │ ├── DeflaterHuffman.cs │ │ ├── DeflaterPending.cs │ │ ├── Inflater.cs │ │ ├── InflaterDynHeader.cs │ │ ├── InflaterHuffmanTree.cs │ │ ├── PendingBuffer.cs │ │ └── Streams │ │ ├── DeflaterOutputStream.cs │ │ ├── InflaterInputStream.cs │ │ ├── OutputWindow.cs │ │ └── StreamManipulator.cs ├── PdfSharp.csproj ├── PdfSharp │ ├── PSSR.cs │ ├── PageSizeConverter.cs │ ├── PdfSharpException.cs │ ├── ProductVersionInfo.cs │ ├── VersionInfo.cs │ └── enums │ │ ├── PSMsgID.cs │ │ ├── PageOrientation.cs │ │ └── PageSize.cs ├── Properties │ └── AssemblyInfo.cs └── StrongnameKey.snk ├── ScannerSite.sln ├── TWAIN@Web.Tests ├── ProcessingAllowedFormatsTests.cs ├── Properties │ └── AssemblyInfo.cs └── TWAIN@Web.Tests.csproj ├── TwainDotNet.WinFroms ├── Properties │ └── AssemblyInfo.cs ├── TwainDotNet.WinFroms.csproj ├── TwainDotNet.WinFroms.nuspec └── WinFormsWindowMessageHook.cs ├── TwainDotNet ├── AreaSettings.cs ├── Capability.cs ├── CapabilityReader.cs ├── CapabilityResult.cs ├── DataSource.cs ├── DataSourceManager.cs ├── Diagnostics.cs ├── FeederEmptyException.cs ├── IWindowsMessageHook.cs ├── PageSettings.cs ├── Properties │ └── AssemblyInfo.cs ├── ResolutionSettings.cs ├── RotationSettings.cs ├── ScanSettings.cs ├── ScanningCompleteEventArgs.cs ├── SourceSettings.cs ├── TransferImageEventArgs.cs ├── Twain.cs ├── TwainDotNet.csproj ├── TwainDotNet.nuspec ├── TwainDotNet.snk ├── TwainException.cs ├── TwainNative │ ├── AutoSize.cs │ ├── Capabilities.cs │ ├── CapabilityArrayValue.cs │ ├── CapabilityEnumValue.cs │ ├── CapabilityOneValue.cs │ ├── CapabilityRangeValue.cs │ ├── Command.cs │ ├── Compression.cs │ ├── ConditionCode.cs │ ├── ContainerType.cs │ ├── Country.cs │ ├── DataArgumentType.cs │ ├── DataGroup.cs │ ├── Duplex.cs │ ├── Event.cs │ ├── Fix32.cs │ ├── FlipRotation.cs │ ├── Frame.cs │ ├── Identity.cs │ ├── ImageFileFormat.cs │ ├── ImageInfo.cs │ ├── ImageLayout.cs │ ├── ItemType.cs │ ├── Language.cs │ ├── Message.cs │ ├── Orientation.cs │ ├── PageType.cs │ ├── PendingXfers.cs │ ├── PixelType.cs │ ├── Status.cs │ ├── TransferMechanism.cs │ ├── Twain32Native.cs │ ├── TwainCapability.cs │ ├── TwainConstants.cs │ ├── TwainResult.cs │ ├── TwainState.cs │ ├── TwainType.cs │ ├── TwainVersion.cs │ ├── Units.cs │ └── UserInterface.cs ├── ValueConverter.cs ├── Win32 │ ├── BitmapInfoHeader.cs │ ├── BitmapRenderer.cs │ ├── Gdi32Native.cs │ ├── Kernel32Native.cs │ ├── User32Native.cs │ └── WindowsMessage.cs └── packages.config ├── TwainWeb.ServiceManager ├── App.config ├── FileLogger.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RegistryHelper.cs ├── ServiceHelper.cs └── TwainWeb.ServiceManager.csproj └── TwainWeb.Standalone ├── App ├── AsyncWorker.cs ├── Binders │ └── ModelBinder.cs ├── Cache │ └── CacheSettings.cs ├── Commands │ └── ScanCommand.cs ├── Controllers │ ├── HomeController.cs │ └── ScanController.cs ├── Extensions │ └── EnumExtensions.cs ├── GlobalDictionaries.cs ├── Hook │ ├── MessageBoxHook.cs │ └── MessageBoxHookManager.cs ├── Models │ ├── FormatPage.cs │ ├── Request │ │ ├── DownloadFileParam.cs │ │ └── ScanForm.cs │ ├── Response │ │ ├── ActionResult.cs │ │ ├── ExecutionResult.cs │ │ ├── MultipleScanResult.cs │ │ ├── ScanResult.cs │ │ ├── ScannerParametersQueryResult.cs │ │ ├── ScannerSettings.cs │ │ └── SingleScanResult.cs │ └── ScanFeed.cs ├── Queries │ └── GetScannerParametersQuery.cs ├── Scanner │ ├── IScannerManager.cs │ ├── ISource.cs │ ├── ScannerManager.cs │ └── ScannerManagerFactory.cs ├── Tools │ └── ImageTools.cs ├── Twain │ ├── DibToImage.cs │ ├── SettingsAcquire.cs │ ├── Source.cs │ ├── Twain32.cs │ ├── TwainDefs.cs │ ├── TwainException.cs │ ├── TwainExtensions.cs │ ├── TwainScannerManager.cs │ ├── TwainSource.cs │ └── TwainState.cs ├── TwainNet │ ├── TwainDotNetScannerManager.cs │ ├── TwainDotNetSource.cs │ └── TwainPixelTypeExtensions.cs └── Wia │ ├── WiaFormat.cs │ ├── WiaPixelType.cs │ ├── WiaProperty.cs │ ├── WiaScannerManager.cs │ └── WiaSource.cs ├── AssemblyInfo.cs ├── Configurator ├── FormForSetPort.Designer.cs ├── FormForSetPort.cs ├── FormForSetPort.resx └── RuntimeConfigurationManager.cs ├── ConsoleManager.cs ├── Files ├── Content │ ├── Home │ │ ├── Scan.css │ │ └── images │ │ │ ├── CountScans.png │ │ │ ├── icon-count-scans.png │ │ │ ├── icon-dpi.png │ │ │ ├── icon-name.png │ │ │ ├── icon-number.png │ │ │ ├── icon-timeout.png │ │ │ ├── photo.jpg │ │ │ └── photo2.jpg │ ├── Site.css │ ├── bootstrap-3.3.5.min.css │ ├── bootstrap-responsive.min.css │ ├── favicon.ico │ └── images │ │ ├── dev-in-unit6.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── loadingGreen.gif │ │ └── photo.jpg ├── Readme.txt ├── Scripts │ ├── bootstrap-3.3.5.min.js │ ├── jquery-1.9.1.min.js │ └── modernizr-2.6.2.js ├── bat │ └── publish_release.bat └── index.html ├── Host ├── FierwallHelper.cs ├── HttpServer.cs ├── HttpServerError.cs ├── ScanService.cs ├── ScanService.resx └── WindowsMessageLoopThread.cs ├── Program.cs ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── Resources └── TwainWebIcon.ico ├── Settings.Designer.cs ├── Settings.settings ├── TwainWeb.Standalone.csproj ├── TwainWeb.Standalone_TemporaryKey.pfx ├── TwainWebIcon.ico ├── app.config └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/.gitignore -------------------------------------------------------------------------------- /faq/content/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/content/faq.css -------------------------------------------------------------------------------- /faq/content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/content/favicon.ico -------------------------------------------------------------------------------- /faq/content/images/AllowFileDownload.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/content/images/AllowFileDownload.PNG -------------------------------------------------------------------------------- /faq/content/images/IEJSSettings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/content/images/IEJSSettings.PNG -------------------------------------------------------------------------------- /faq/content/images/IESettings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/content/images/IESettings.PNG -------------------------------------------------------------------------------- /faq/content/images/UnsafePortError.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/content/images/UnsafePortError.PNG -------------------------------------------------------------------------------- /faq/content/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/content/images/noise.png -------------------------------------------------------------------------------- /faq/content/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/content/site.css -------------------------------------------------------------------------------- /faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/faq/index.html -------------------------------------------------------------------------------- /installer/TWAIN@Web Standalone.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/installer/TWAIN@Web Standalone.ci -------------------------------------------------------------------------------- /installer/bat/sign_exe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/installer/bat/sign_exe.bat -------------------------------------------------------------------------------- /installer/bat/sign_installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/installer/bat/sign_installer.bat -------------------------------------------------------------------------------- /sources/PdfSharp/!internal/Directives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/!internal/Directives.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/BarCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/BarCode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/BarCodeRenderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/BarCodeRenderInfo.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/BcgSR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/BcgSR.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/Code2of5Interleaved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/Code2of5Interleaved.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/Code3of9Standard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/Code3of9Standard.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/CodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/CodeBase.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/CodeDataMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/CodeDataMatrix.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/CodeOmr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/CodeOmr.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/DataMatrixImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/DataMatrixImage.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/MatrixCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/MatrixCode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/OmrData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/OmrData.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/ThickThinBarcodeRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/ThickThinBarcodeRenderer.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/AnchorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/AnchorType.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/CodeDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/CodeDirection.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/CodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/CodeType.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/DataMatrixEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/DataMatrixEncoding.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/MarkDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/MarkDistance.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/TextLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.BarCodes/enums/TextLocation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.Layout/XTextFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.Layout/XTextFormatter.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.Layout/enums/XParagraphAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.Layout/enums/XParagraphAlignment.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.Pdf/PdfGraphicsState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.Pdf/PdfGraphicsState.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.Pdf/XGraphicsPdfRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.Pdf/XGraphicsPdfRenderer.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.Pdf/enums/DirtyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.Pdf/enums/DirtyFlags.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.Pdf/enums/StreamMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.Pdf/enums/StreamMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing.Shapes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing.Shapes/Shape.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/FontHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/FontHelper.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/GeometryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/GeometryHelper.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/GraphicsStateStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/GraphicsStateStack.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/IXGraphicsRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/IXGraphicsRenderer.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/ImageHelper.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/InternalGraphicsState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/InternalGraphicsState.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/PdfFontOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/PdfFontOptions.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XBrush.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XBrushes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XBrushes.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XColor.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XColorResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XColorResourceManager.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XColors.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XConvert.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XFont.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XFontFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XFontFamily.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XFontMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XFontMetrics.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XFontStretch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XFontStretch.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XFontWeight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XFontWeight.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XFontWeights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XFontWeights.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XForm.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XGlyphTypeface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XGlyphTypeface.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XGraphics.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XGraphicsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XGraphicsContainer.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XGraphicsPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XGraphicsPath.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XGraphicsPathInternals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XGraphicsPathInternals.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XGraphicsPathItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XGraphicsPathItem.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XGraphicsState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XGraphicsState.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XImage.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XImageFormat.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XKnownColorTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XKnownColorTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XLinearGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XLinearGradientBrush.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XMatrix.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XPdfForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XPdfForm.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XPen.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XPens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XPens.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XPoint.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XPrivateFontCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XPrivateFontCollection.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XRect.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XSize.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XSolidBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XSolidBrush.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XStringFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XStringFormat.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XStringFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XStringFormats.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XTypeFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XTypeFace.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XUnit.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/XVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/XVector.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/PathStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/PathStart.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XColorSpace.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XCombineMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XCombineMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XDashStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XDashStyle.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XFillMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XFillMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XFontStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XFontStyle.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XGraphicRenderTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XGraphicRenderTarget.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XGraphicsPathItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XGraphicsPathItemType.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XGraphicsPdfPageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XGraphicsPdfPageOptions.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XGraphicsUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XGraphicsUnit.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XKnownColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XKnownColor.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XLineAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XLineAlignment.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XLineCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XLineCap.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XLineJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XLineJoin.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XLinearGradientMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XLinearGradientMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XMatrixOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XMatrixOrder.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XPageDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XPageDirection.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XSmoothingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XSmoothingMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Drawing/enums/XStringAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Drawing/enums/XStringAlignment.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/ExternalHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/ExternalHelper.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/FontData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/FontData.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/FontDataStock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/FontDataStock.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/GenericFontTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/GenericFontTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/GlyphDataTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/GlyphDataTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/IRefFontTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/IRefFontTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/IndexToLocationTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/IndexToLocationTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/OpenTypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/OpenTypeDescriptor.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/OpenTypeFontTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/OpenTypeFontTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/OpenTypeFontWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/OpenTypeFontWriter.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/OpenTypeStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/OpenTypeStructures.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/TableDirectoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/TableDirectoryEntry.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/enums/FontTechnology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/enums/FontTechnology.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/enums/TableTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/enums/TableTag.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts.OpenType/enums/TableTagNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts.OpenType/enums/TableTagNames.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts/AdobeGlyphList20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts/AdobeGlyphList20.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts/AdobeGlyphListForNewFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts/AdobeGlyphListForNewFonts.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts/CMapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts/CMapInfo.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts/FontDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts/FontDescriptor.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts/FontDescriptorStock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts/FontDescriptorStock.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Fonts/FontWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Fonts/FontWriter.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Forms/ColorComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Forms/ColorComboBox.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Forms/DeviceInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Forms/DeviceInfos.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Forms/PagePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Forms/PagePreview.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Forms/PagePreview.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Forms/PagePreview.resx -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Forms/PagePreviewCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Forms/PagePreviewCanvas.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Forms/PagePreviewCanvas.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Forms/PagePreviewCanvas.resx -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Forms/enums/RenderMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Forms/enums/RenderMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Forms/enums/Zoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Forms/enums/Zoom.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Internal/Calc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Internal/Calc.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Internal/ColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Internal/ColorHelper.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Internal/DoubleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Internal/DoubleUtil.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Internal/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Internal/NativeMethods.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Internal/TokenizerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Internal/TokenizerHelper.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfAcroField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfAcroField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfAcroForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfAcroForm.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfButtonField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfButtonField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfCheckBoxField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfCheckBoxField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfChoiceField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfChoiceField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfComboBoxField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfComboBoxField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfGenericField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfGenericField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfListBoxField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfListBoxField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfPushButtonField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfPushButtonField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfRadioButtonField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfRadioButtonField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfSignatureField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfSignatureField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfTextField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/PdfTextField.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.AcroForms/enums/PdfAcroFieldFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.AcroForms/enums/PdfAcroFieldFlags.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Actions/PdfAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Actions/PdfAction.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Actions/enums/PdfNamedActionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Actions/enums/PdfNamedActionNames.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/IContentStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/IContentStream.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfCIDFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfCIDFont.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfCatalog.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfContent.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfContents.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfDictionaryWithContentStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfDictionaryWithContentStream.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfExtGState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfExtGState.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfExtGStateTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfExtGStateTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFont.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFontDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFontDescriptor.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFontTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFontTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFormXObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFormXObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFormXObjectTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfFormXObjectTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfGroupAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfGroupAttributes.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfImage.FaxEncode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfImage.FaxEncode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfImage.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfImageTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfImageTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfImportedObjectTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfImportedObjectTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfInternals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfInternals.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfObjectInternals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfObjectInternals.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfPageInheritableObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfPageInheritableObjects.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfReference.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfResourceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfResourceMap.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfResourceTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfResourceTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfResources.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfShading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfShading.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfShadingPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfShadingPattern.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfShadingTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfShadingTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfSoftMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfSoftMask.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfTilingPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfTilingPattern.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfToUnicodeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfToUnicodeMap.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfTrailer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfTrailer.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfTransparencyGroupAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfTransparencyGroupAttributes.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfTrueTypeFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfTrueTypeFont.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfType0Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfType0Font.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfType1Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfType1Font.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfXObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Advanced/PdfXObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfAnnotation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfAnnotations.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfGenericAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfGenericAnnotation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfLinkAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfLinkAnnotation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfRubberStampAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfRubberStampAnnotation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfTextAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfTextAnnotation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfWidgetAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/PdfWidgetAnnotation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/enums/PdfAnnotationFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/enums/PdfAnnotationFlags.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/enums/PdfRubberStampAnnotationIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/enums/PdfRubberStampAnnotationIcon.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Annotations/enums/PdfTextAnnotationIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Annotations/enums/PdfTextAnnotationIcon.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content.Objects/CObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content.Objects/CObjects.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content.Objects/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content.Objects/Operators.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content.Objects/enum/OpCodeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content.Objects/enum/OpCodeFlags.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content.Objects/enum/OpCodeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content.Objects/enum/OpCodeName.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content/CLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content/CLexer.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content/CParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content/CParser.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content/Chars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content/Chars.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content/ContentReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content/ContentReader.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content/ContentReaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content/ContentReaderException.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content/ContentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content/ContentWriter.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Content/enums/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Content/enums/Symbol.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Filters/ASCII85Decode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Filters/ASCII85Decode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Filters/ASCIIHexDecode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Filters/ASCIIHexDecode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Filters/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Filters/Filter.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Filters/Filtering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Filters/Filtering.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Filters/FlateDecode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Filters/FlateDecode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Filters/LzwDecode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Filters/LzwDecode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/Chars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/Chars.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/Parser.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/PdfReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/PdfReader.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/PdfReaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/PdfReaderException.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/PdfWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/PdfWriter.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/ShiftStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/ShiftStack.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/enums/PasswordValidity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/enums/PasswordValidity.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/enums/PdfDocumentOpenMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/enums/PdfDocumentOpenMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/enums/PdfWriterLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/enums/PdfWriterLayout.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/enums/PdfWriterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/enums/PdfWriterOptions.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.IO/enums/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.IO/enums/Symbol.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Internal/AnsiEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Internal/AnsiEncoding.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Internal/ColorSpaceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Internal/ColorSpaceHelper.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Internal/DocEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Internal/DocEncoding.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Internal/GlobalObjectTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Internal/GlobalObjectTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Internal/PdfEncoders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Internal/PdfEncoders.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Internal/RawEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Internal/RawEncoding.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Internal/RawUnicodeEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Internal/RawUnicodeEncoding.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Internal/ThreadLocalStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Internal/ThreadLocalStorage.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Printing/PdfFilePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Printing/PdfFilePrinter.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Security/PdfSecurityHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Security/PdfSecurityHandler.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Security/PdfSecuritySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Security/PdfSecuritySettings.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Security/PdfStandardSecurityHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Security/PdfStandardSecurityHandler.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Security/enums/PdfDocumentSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Security/enums/PdfDocumentSecurity.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf.Security/enums/PdfUserAccessPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf.Security/enums/PdfUserAccessPermission.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/EntryInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/EntryInfoAttribute.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/KeysBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/KeysBase.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/KeysMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/KeysMeta.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfArray.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfBoolean.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfBooleanObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfBooleanObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfCustomValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfCustomValue.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfCustomValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfCustomValues.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfDate.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfDictionary.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfDocument.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfDocumentInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfDocumentInformation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfDocumentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfDocumentOptions.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfDocumentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfDocumentSettings.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfInteger.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfIntegerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfIntegerObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfItem.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfLiteral.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfName.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfNameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfNameObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfNull.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfNullObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfNullObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfNumber.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfNumberObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfNumberObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfObjectID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfObjectID.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfOutline.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfPage.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfPages.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfReal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfReal.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfRealObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfRealObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfRectangle.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfReferenceTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfReferenceTable.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfString.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfStringObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfStringObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfUInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfUInteger.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfUIntegerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfUIntegerObject.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/PdfViewerPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/PdfViewerPreferences.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/TrimMargins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/TrimMargins.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/DocumentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/DocumentState.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfColorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfColorMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfCustomValueCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfCustomValueCompression.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfFontEmbedding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfFontEmbedding.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfFontEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfFontEncoding.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfOutlineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfOutlineStyle.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfPageLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfPageLayout.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfPageMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfPageMode.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfReadingDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfReadingDirection.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.Pdf/enums/PdfTextStringEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.Pdf/enums/PdfTextStringEncoding.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Checksums/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Checksums/Adler32.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Checksums/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Checksums/CRC32.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Checksums/IChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Checksums/IChecksum.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/ReadMe.txt -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/SharpZip/SharpZipBaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/SharpZip/SharpZipBaseException.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Deflater.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/DeflaterConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/DeflaterConstants.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/DeflaterEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/DeflaterEngine.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/DeflaterHuffman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/DeflaterHuffman.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/DeflaterPending.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/DeflaterPending.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Inflater.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/InflaterDynHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/InflaterDynHeader.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/InflaterHuffmanTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/InflaterHuffmanTree.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/PendingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/PendingBuffer.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Streams/DeflaterOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Streams/DeflaterOutputStream.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Streams/InflaterInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Streams/InflaterInputStream.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Streams/OutputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Streams/OutputWindow.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Streams/StreamManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.SharpZipLib/Zip/Compression/Streams/StreamManipulator.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp.csproj -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp/PSSR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp/PSSR.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp/PageSizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp/PageSizeConverter.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp/PdfSharpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp/PdfSharpException.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp/ProductVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp/ProductVersionInfo.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp/VersionInfo.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp/enums/PSMsgID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp/enums/PSMsgID.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp/enums/PageOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp/enums/PageOrientation.cs -------------------------------------------------------------------------------- /sources/PdfSharp/PdfSharp/enums/PageSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/PdfSharp/enums/PageSize.cs -------------------------------------------------------------------------------- /sources/PdfSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sources/PdfSharp/StrongnameKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/PdfSharp/StrongnameKey.snk -------------------------------------------------------------------------------- /sources/ScannerSite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/ScannerSite.sln -------------------------------------------------------------------------------- /sources/TWAIN@Web.Tests/ProcessingAllowedFormatsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TWAIN@Web.Tests/ProcessingAllowedFormatsTests.cs -------------------------------------------------------------------------------- /sources/TWAIN@Web.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TWAIN@Web.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sources/TWAIN@Web.Tests/TWAIN@Web.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TWAIN@Web.Tests/TWAIN@Web.Tests.csproj -------------------------------------------------------------------------------- /sources/TwainDotNet.WinFroms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet.WinFroms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sources/TwainDotNet.WinFroms/TwainDotNet.WinFroms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet.WinFroms/TwainDotNet.WinFroms.csproj -------------------------------------------------------------------------------- /sources/TwainDotNet.WinFroms/TwainDotNet.WinFroms.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet.WinFroms/TwainDotNet.WinFroms.nuspec -------------------------------------------------------------------------------- /sources/TwainDotNet.WinFroms/WinFormsWindowMessageHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet.WinFroms/WinFormsWindowMessageHook.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/AreaSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/AreaSettings.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Capability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Capability.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/CapabilityReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/CapabilityReader.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/CapabilityResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/CapabilityResult.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/DataSource.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/DataSourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/DataSourceManager.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Diagnostics.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/FeederEmptyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/FeederEmptyException.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/IWindowsMessageHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/IWindowsMessageHook.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/PageSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/PageSettings.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/ResolutionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/ResolutionSettings.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/RotationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/RotationSettings.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/ScanSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/ScanSettings.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/ScanningCompleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/ScanningCompleteEventArgs.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/SourceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/SourceSettings.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TransferImageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TransferImageEventArgs.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Twain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Twain.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainDotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainDotNet.csproj -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainDotNet.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainDotNet.nuspec -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainDotNet.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainDotNet.snk -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainException.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/AutoSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/AutoSize.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Capabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Capabilities.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/CapabilityArrayValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/CapabilityArrayValue.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/CapabilityEnumValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/CapabilityEnumValue.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/CapabilityOneValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/CapabilityOneValue.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/CapabilityRangeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/CapabilityRangeValue.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Command.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Compression.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/ConditionCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/ConditionCode.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/ContainerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/ContainerType.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Country.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/DataArgumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/DataArgumentType.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/DataGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/DataGroup.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Duplex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Duplex.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Event.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Fix32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Fix32.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/FlipRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/FlipRotation.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Frame.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Identity.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/ImageFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/ImageFileFormat.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/ImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/ImageInfo.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/ImageLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/ImageLayout.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/ItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/ItemType.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Language.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Message.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Orientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Orientation.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/PageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/PageType.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/PendingXfers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/PendingXfers.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/PixelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/PixelType.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Status.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/TransferMechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/TransferMechanism.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Twain32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Twain32Native.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/TwainCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/TwainCapability.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/TwainConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/TwainConstants.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/TwainResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/TwainResult.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/TwainState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/TwainState.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/TwainType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/TwainType.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/TwainVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/TwainVersion.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/Units.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/Units.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/TwainNative/UserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/TwainNative/UserInterface.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/ValueConverter.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Win32/BitmapInfoHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Win32/BitmapInfoHeader.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Win32/BitmapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Win32/BitmapRenderer.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Win32/Gdi32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Win32/Gdi32Native.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Win32/Kernel32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Win32/Kernel32Native.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Win32/User32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Win32/User32Native.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/Win32/WindowsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/Win32/WindowsMessage.cs -------------------------------------------------------------------------------- /sources/TwainDotNet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainDotNet/packages.config -------------------------------------------------------------------------------- /sources/TwainWeb.ServiceManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.ServiceManager/App.config -------------------------------------------------------------------------------- /sources/TwainWeb.ServiceManager/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.ServiceManager/FileLogger.cs -------------------------------------------------------------------------------- /sources/TwainWeb.ServiceManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.ServiceManager/Program.cs -------------------------------------------------------------------------------- /sources/TwainWeb.ServiceManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.ServiceManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sources/TwainWeb.ServiceManager/RegistryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.ServiceManager/RegistryHelper.cs -------------------------------------------------------------------------------- /sources/TwainWeb.ServiceManager/ServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.ServiceManager/ServiceHelper.cs -------------------------------------------------------------------------------- /sources/TwainWeb.ServiceManager/TwainWeb.ServiceManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.ServiceManager/TwainWeb.ServiceManager.csproj -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/AsyncWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/AsyncWorker.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Binders/ModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Binders/ModelBinder.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Cache/CacheSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Cache/CacheSettings.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Commands/ScanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Commands/ScanCommand.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Controllers/HomeController.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Controllers/ScanController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Controllers/ScanController.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/GlobalDictionaries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/GlobalDictionaries.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Hook/MessageBoxHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Hook/MessageBoxHook.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Hook/MessageBoxHookManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Hook/MessageBoxHookManager.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/FormatPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/FormatPage.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Request/DownloadFileParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Request/DownloadFileParam.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Request/ScanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Request/ScanForm.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Response/ActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Response/ActionResult.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Response/ExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Response/ExecutionResult.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Response/MultipleScanResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Response/MultipleScanResult.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Response/ScanResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Response/ScanResult.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Response/ScannerParametersQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Response/ScannerParametersQueryResult.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Response/ScannerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Response/ScannerSettings.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/Response/SingleScanResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/Response/SingleScanResult.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Models/ScanFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Models/ScanFeed.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Queries/GetScannerParametersQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Queries/GetScannerParametersQuery.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Scanner/IScannerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Scanner/IScannerManager.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Scanner/ISource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Scanner/ISource.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Scanner/ScannerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Scanner/ScannerManager.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Scanner/ScannerManagerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Scanner/ScannerManagerFactory.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Tools/ImageTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Tools/ImageTools.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/DibToImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/DibToImage.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/SettingsAcquire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/SettingsAcquire.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/Source.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/Twain32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/Twain32.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/TwainDefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/TwainDefs.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/TwainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/TwainException.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/TwainExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/TwainExtensions.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/TwainScannerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/TwainScannerManager.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/TwainSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/TwainSource.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Twain/TwainState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Twain/TwainState.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/TwainNet/TwainDotNetScannerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/TwainNet/TwainDotNetScannerManager.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/TwainNet/TwainDotNetSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/TwainNet/TwainDotNetSource.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/TwainNet/TwainPixelTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/TwainNet/TwainPixelTypeExtensions.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Wia/WiaFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Wia/WiaFormat.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Wia/WiaPixelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Wia/WiaPixelType.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Wia/WiaProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Wia/WiaProperty.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Wia/WiaScannerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Wia/WiaScannerManager.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/App/Wia/WiaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/App/Wia/WiaSource.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/AssemblyInfo.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Configurator/FormForSetPort.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Configurator/FormForSetPort.Designer.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Configurator/FormForSetPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Configurator/FormForSetPort.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Configurator/FormForSetPort.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Configurator/FormForSetPort.resx -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Configurator/RuntimeConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Configurator/RuntimeConfigurationManager.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/ConsoleManager.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/Scan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/Scan.css -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/images/CountScans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/images/CountScans.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/images/icon-count-scans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/images/icon-count-scans.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/images/icon-dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/images/icon-dpi.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/images/icon-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/images/icon-name.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/images/icon-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/images/icon-number.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/images/icon-timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/images/icon-timeout.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/images/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/images/photo.jpg -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Home/images/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Home/images/photo2.jpg -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/Site.css -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/bootstrap-3.3.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/bootstrap-3.3.5.min.css -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/favicon.ico -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/images/dev-in-unit6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/images/dev-in-unit6.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/images/loadingGreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/images/loadingGreen.gif -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Content/images/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Content/images/photo.jpg -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Readme.txt -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Scripts/bootstrap-3.3.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Scripts/bootstrap-3.3.5.min.js -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/bat/publish_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/bat/publish_release.bat -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Files/index.html -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Host/FierwallHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Host/FierwallHelper.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Host/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Host/HttpServer.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Host/HttpServerError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Host/HttpServerError.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Host/ScanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Host/ScanService.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Host/ScanService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Host/ScanService.resx -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Host/WindowsMessageLoopThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Host/WindowsMessageLoopThread.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Program.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/ProjectInstaller.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/ProjectInstaller.resx -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Properties/Resources.resx -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Properties/Settings.settings -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Properties/app.manifest -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Resources/TwainWebIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Resources/TwainWebIcon.ico -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Settings.Designer.cs -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/Settings.settings -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/TwainWeb.Standalone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/TwainWeb.Standalone.csproj -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/TwainWeb.Standalone_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/TwainWeb.Standalone_TemporaryKey.pfx -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/TwainWebIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/TwainWebIcon.ico -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/app.config -------------------------------------------------------------------------------- /sources/TwainWeb.Standalone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UNIT6-open/TWAIN-Web/HEAD/sources/TwainWeb.Standalone/packages.config --------------------------------------------------------------------------------