Select to view content in your preferred language

Is there event when the feature service version (branch versioning) changes?

101
1
Jump to solution
a week ago
Gurunara
Occasional Contributor

Need to hook into the event when user changes the version of a feature service, to retrieve the current version name.

 

0 Kudos
1 Solution

Accepted Solutions
Gurunara
Occasional Contributor

I already had it:

ChangingVersionEvent.Subscribe(args => {
if (args.State == ChangingVersionState.Finished)
{
...
});

View solution in original post

0 Kudos
1 Reply
Gurunara
Occasional Contributor

I already had it:

ChangingVersionEvent.Subscribe(args => {
if (args.State == ChangingVersionState.Finished)
{
...
});

0 Kudos