DefaultPdfIntegrationProvider Class |
Namespace: RadPdf.Integration
The DefaultPdfIntegrationProvider type exposes the following members.
Name | Description | |
---|---|---|
DefaultPdfIntegrationProvider |
Creates a new instance of the DefaultPdfIntegrationProvider class.
|
Name | Description | |
---|---|---|
AdvancedSettings |
Gets an object that specifies the HTTP settings used with RAD PDF applications using this integration provider.
(Inherited from PdfIntegrationProvider.) | |
FontResources |
Gets an object that specifies the font resources available in RAD PDF applications using this integration provider.
(Inherited from PdfIntegrationProvider.) | |
HttpSettings |
Gets an object that specifies the HTTP settings used with RAD PDF applications using this integration provider.
(Inherited from PdfIntegrationProvider.) | |
License |
Gets or sets an object that represents the Red Software issued license currently used by RAD PDF applications using this integration provider.
(Inherited from PdfIntegrationProvider.) | |
LiteSessionProvider |
Gets or sets an object that specifies the session provider used for Lite Documents with RAD PDF applications using this integration provider.
(Inherited from PdfIntegrationProvider.) | |
LiteStorageProvider |
Gets or sets an object that specifies the storage provider used for Lite Documents with RAD PDF applications using this integration provider.
(Inherited from PdfIntegrationProvider.) | |
PdfWebControlResources |
Gets or sets a ResourceManager used by the PdfWebControl for visible resources (e.g. text strings used in the interface).
(Inherited from PdfIntegrationProvider.) | |
StorageProvider |
Gets an object that specifies the storage provider used with RAD PDF applications using this integration provider.
(Inherited from PdfIntegrationProvider.) | |
WcfSettings |
Gets an object that specifies the WCF settings used with RAD PDF applications using this integration provider.
(Inherited from PdfIntegrationProvider.) |
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnDocumentAppending |
Called before a document is appended.
(Inherited from PdfIntegrationProvider.) | |
OnDocumentCreated |
Called after a document is created.
(Inherited from PdfIntegrationProvider.) | |
OnDocumentDownloading |
Called before a document is downloaded.
(Inherited from PdfIntegrationProvider.) | |
OnDocumentEmbeddedFileDownloading |
Called before an embedded file is download from a document.
(Inherited from PdfIntegrationProvider.) | |
OnDocumentInit |
Called before a document is loaded, as the document interface is initializing.
(Inherited from PdfIntegrationProvider.) | |
OnDocumentPrinting |
Called before a document is printed.
(Inherited from PdfIntegrationProvider.) | |
OnDocumentSaved |
Called after a document is saved.
(Inherited from PdfIntegrationProvider.) | |
OnDocumentSaving |
Called before a document is saved.
(Inherited from PdfIntegrationProvider.) | |
OnDocumentSearching |
Called before a document is searched.
(Overrides PdfIntegrationProviderOnDocumentSearching(DocumentSearchingEventArgs).) | |
OnDocumentUploading |
Called before a document is uploaded into an empty PdfWebControlLite instance.
(Inherited from PdfIntegrationProvider.) | |
OnHttpHandlerException |
Called when an exception occurs in a call to the PdfHttpHandler configured.
(Inherited from PdfIntegrationProvider.) | |
OnInternalWarning |
Called when an internal warning occurs.
(Inherited from PdfIntegrationProvider.) | |
OnObjectDataAdding |
Called before an object's data (e.g. the image data for an PdfImageShape object) is added.
(Overrides PdfIntegrationProviderOnObjectDataAdding(ObjectDataAddingEventArgs).) | |
OnPageRenderOnDemand |
Called before an page is rendered on demand.
(Inherited from PdfIntegrationProvider.) | |
ProcessAppendDataRequest |
Called when processing a request for object data initiated by the Client API which set the user mode to object insertion with a custom object key.
(Inherited from PdfIntegrationProvider.) | |
ProcessObjectDataRequest |
Called when processing a request for object data initiated by the Client API which set the user mode to object insertion with a custom object key.
(Inherited from PdfIntegrationProvider.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
<?xml version="1.0"?> <configuration> <appSettings> <add key="RadPdfConnectionString" value="Server=.\SQLExpress;Database=RadPdf;Trusted_Connection=Yes;"/> <add key="RadPdfLicenseKey" value="DEMO"/> <!-- No integration provider is specified, so DefaultPdfIntegrationProvider is used --> <!-- Legacy AppSettings for use with DefaultPdfIntegrationProvider --> <add key="RadPdfDocumentOverheadMax" value="1024"/> <!-- Max of 1MB document overhead --> <add key="RadPdfHttpCompression" value="true"/> <!-- Use HTTP compression (e.g. gzip) --> <add key="RadPdfSearchTermMin" value="3"/> <!-- Don't search for terms less than 3 characters --> <add key="RadPdfServiceLocation" value="localhost:18104"/> <!-- Service is on this computer at the default port --> </appSettings> <system.web> <httpHandlers> <add path="RadPdf.axd" verb="GET,POST" type="RadPdf.Web.HttpHandler.PdfHttpHandler"/> </httpHandlers> </system.web> <!-- The system.webServer element is for use with IIS 7 (and later) when Managed Pipeline Mode is set to "Integrated". It will be ignored in other versions of IIS. --> <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <handlers> <add path="RadPdf.axd" verb="GET,POST" name="PdfHttpHandler" preCondition="integratedMode" type="RadPdf.Web.HttpHandler.PdfHttpHandler"/> </handlers> </system.webServer> </configuration>