xamarin - DryIoC - Register equivalent in Unity Prism -


what equivalent of code(dryioc) in unity?

container.register<iauthenticationservice, authenticationservice>( reuse.singleton ); 

this sample code hamburgermenu project in prism xamarin

thanks!

container.registertype<iauthenticationservice, authenticationservice>( new containercontrolledlifetimemanager() ); 

that means lifetime of authenticationservice match lifetime of container. if don't destroy , recreate container, you'll same service instance.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -