Provides access to events that occur on versions in services. This interface is for use in Server and especially Server Object Extensions.
Members
Name | Description | |
---|---|---|
VersionCreated | A new version was created. Event is reported on DEFAULT. | |
VersionDeleted | A version was deleted. Event is reported on DEFAULT and the deleted version. | |
VersionPosted | A version was posted. Event is reported on DEFAULT and the posted version. | |
VersionReconciled | A version was reconciled. Event is reported on DEFAULT and the reconciled version. | |
VersionRenamed | A version was renamed. Event is reported on DEFAULT and the renamed version. |
IVersionEventsServices.VersionCreated Method
A new version was created. Event is reported on DEFAULT.
Public Sub VersionCreated ( _
ByVal VersionID As Guid, _
ByVal Name As String _
)
public void VersionCreated (
Guid VersionID,
string Name
);
IVersionEventsServices.VersionDeleted Method
A version was deleted. Event is reported on DEFAULT and the deleted version.
Public Sub VersionDeleted ( _
ByVal VersionID As Guid, _
ByVal Name As String _
)
public void VersionDeleted (
Guid VersionID,
string Name
);
IVersionEventsServices.VersionPosted Method
A version was posted. Event is reported on DEFAULT and the posted version.
Public Sub VersionPosted ( _
ByVal VersionID As Guid, _
ByVal Name As String _
)
public void VersionPosted (
Guid VersionID,
string Name
);
IVersionEventsServices.VersionReconciled Method
A version was reconciled. Event is reported on DEFAULT and the reconciled version.
Public Sub VersionReconciled ( _
ByVal VersionID As Guid, _
ByVal Name As String _
)
public void VersionReconciled (
Guid VersionID,
string Name
);
IVersionEventsServices.VersionRenamed Method
A version was renamed. Event is reported on DEFAULT and the renamed version.
Public Sub VersionRenamed ( _
ByVal VersionID As Guid, _
ByVal oldName As String, _
ByVal newName As String _
)
public void VersionRenamed (
Guid VersionID,
string oldName,
string newName
);
Classes that implement IVersionEventsServices
Classes | Description |
---|