ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.DataProviders Namespace / ImageDataConnection Class / OpenDocument Method
Used to indicate the identifier of the document with which the Page data is associated.
Meta-Data string to be used by a image data provider per its requirements.




In This Topic
    OpenDocument Method (ImageDataConnection)
    In This Topic
    This opens a connection to a specific DocumentIdentifier and returns a connection to that document. It will also add the ImageDocumentDataConnection object to the openDocuments set.
    Syntax
    'Declaration
     
    Public MustOverride Function OpenDocument( _
       ByVal documentIdentifier As String, _
       ByVal contextData As String _
    ) As ImageDocumentDataConnection
    'Usage
     
    Dim instance As ImageDataConnection
    Dim documentIdentifier As String
    Dim contextData As String
    Dim value As ImageDocumentDataConnection
     
    value = instance.OpenDocument(documentIdentifier, contextData)
    public abstract ImageDocumentDataConnection OpenDocument( 
       string documentIdentifier,
       string contextData
    )
    public: abstract ImageDocumentDataConnection* OpenDocument( 
       string* documentIdentifier,
       string* contextData
    ) 
    public:
    abstract ImageDocumentDataConnection^ OpenDocument( 
       String^ documentIdentifier,
       String^ contextData
    ) 

    Parameters

    documentIdentifier
    Used to indicate the identifier of the document with which the Page data is associated.
    contextData
    Meta-Data string to be used by a image data provider per its requirements.

    Return Value

    ImageDocumentDataConnection object.
    Remarks

    For details, refer to the "ImageGear.Web.UI.PageView.DocumentIdentifier".

    See Also