[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.OnLoadInvalidUriHandler

Delegate OnLoadInvalidUriHandler

Namespace
GrapeCity.Documents.Word
Assembly
GcDocs.Word.dll

Represents a delegate that is called when a malformed URI is about to load.

public delegate Uri OnLoadInvalidUriHandler(Uri partUri, string id, string uri)

Parameters

partUri Uri

The URI of the part with an invalid relationship.

id string

The id of the relationship.

uri string

The malformed URI address.

Returns

Uri

A valid URI created from the malformed address string.

Constructors

OnLoadInvalidUriHandler(object, IntPtr)

public OnLoadInvalidUriHandler(object @object, IntPtr method)

Parameters

object object
method IntPtr

Methods

BeginInvoke(Uri, string, string, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(Uri partUri, string id, string uri, AsyncCallback callback, object @object)

Parameters

partUri Uri
id string
uri string
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual Uri EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Returns

Uri

Invoke(Uri, string, string)

public virtual Uri Invoke(Uri partUri, string id, string uri)

Parameters

partUri Uri
id string
uri string

Returns

Uri