Caliburn.Micro.PhoneStateStorageMechanism.RegisterSingleton C# (CSharp) Метод

RegisterSingleton() публичный Метод

Registers service with the storage mechanism as a singleton.
public RegisterSingleton ( Type service, string key, Type implementation ) : void
service System.Type The service.
key string The key.
implementation System.Type The implementation.
Результат void
        public void RegisterSingleton(Type service, string key, Type implementation) {
            container.RegisterWithPhoneService(service, key, implementation);
        }
    }