Class AsyncCopyCompletedEventArgs
Argument for asyncronus copy operation
Inheritance
Namespace: EPiServer
Assembly: EPiServer.dll
Version: 8.11.0Syntax
public class AsyncCopyCompletedEventArgs : AsyncCompletedEventArgs
Constructors
AsyncCopyCompletedEventArgs(ContentReference, ContentReference, ContentReference, Exception, Boolean, Object)
Initializes a new instance of the Async
Declaration
public AsyncCopyCompletedEventArgs(ContentReference sourceLink, ContentReference destinationLink, ContentReference newLink, Exception e, bool cancelled, object userState)
Parameters
Type | Name | Description |
---|---|---|
Content |
sourceLink | The source link. |
Content |
destinationLink | The destination link. |
Content |
newLink | The new link. |
System. |
e | The e. |
System. |
cancelled | if set to |
System. |
userState | Custom Data. |
AsyncCopyCompletedEventArgs(ContentReference, ContentReference, ContentReference, Object)
Initializes a new instance of the Async
Declaration
public AsyncCopyCompletedEventArgs(ContentReference sourceLink, ContentReference destinationLink, ContentReference newLink, object userState)
Parameters
Type | Name | Description |
---|---|---|
Content |
sourceLink | The source link. |
Content |
destinationLink | The destination link. |
Content |
newLink | The new link. |
System. |
userState | State of the user. |
AsyncCopyCompletedEventArgs(Exception, Object)
Initializes a new instance of the Async
Declaration
public AsyncCopyCompletedEventArgs(Exception exception, object userState)
Parameters
Type | Name | Description |
---|---|---|
System. |
exception | The exception. |
System. |
userState | State of the user. |
Properties
DestinationLink
Gets the destination link for the pages that was copied.
Declaration
public ContentReference DestinationLink { get; }
Property Value
Type | Description |
---|---|
Content |
The destination link. |
NewLink
Gets the new link for the pages that where copied.
Declaration
public ContentReference NewLink { get; }
Property Value
Type | Description |
---|---|
Content |
The new link. |
SourceLink
Gets the source link for the pages that was copied.
Declaration
public ContentReference SourceLink { get; }
Property Value
Type | Description |
---|---|
Content |
The source link. |