as you know that isinitialized method of Dynamic Service is not working.
What do you mean?
As Jennifer mentionned, this property only tells you that the layer has attempted to initialize.
To know if the initialization failed, you can use the property InitializationFailure, if it's not null, it means that the initialization failed.
So the possible combinations are:
- IsInitialized = false : the layer is not initialized yet
- IsInitialized = true and InitializationFailure = null : the layer has initialized correctly
- IsInitialized = true and InitializationFailure != null : initialization is over but there was a failure