MvvmCross のクラスのは Mvx というプレフィックスが付いているのが一般的です。
ということは Mvx クラスは MvvmCross のなかでも特別なクラスという意味に見えます。
クラス生成・IoCコンテナサポート・トレースサポート・例外クラス生成を行っています。
名前空間 Cirrious.CrossCore
public static class Mvx
クラス図
クラス生成
public static T IocConstruct<T>()
public static object IocConstruct(Type t)
IoC コンテナ
public static void RegisterSingleton(Func serviceConstructor)
public static void RegisterSingleton(Type tInterface, Func
public static void RegisterSingleton(Type tInterface, object service)
public static void ConstructAndRegisterSingleton()
public static void LazyConstructAndRegisterSingleton()
public static void LazyConstructAndRegisterSingleton(Func constructor)
public static void LazyConstructAndRegisterSingleton(Type type, Func
public static void RegisterType()
public static void RegisterType(Func constructor)
public static void RegisterType(Type type, Func
public static void RegisterType(Type tInterface, Type tType)
public static bool CanResolve<TService>()
public static bool CanResolve(Type serviceType)
public static TService Resolve<TService>()
public static object Resolve(Type serviceType)
public static bool TryResolve<TService>(out TService service)
public static bool TryResolve(Type serviceType, out object service)
public static T Create<T>()
public static T GetSingleton<T>()
IoCコンテナ登録時実行
public static void CallbackWhenRegistered<T>(Action<T> action)
public static void CallbackWhenRegistered<T>(Action action)
public static void CallbackWhenRegistered(Type type, Action action)
トレース
public static void TaggedTrace(MvxTraceLevel level, string tag, string message, params object[] args)
public static void TaggedTrace(string tag, string message, params object[] args)
public static void TaggedWarning(string tag, string message, params object[] args)
public static void TaggedError(string tag, string message, params object[] args)
public static void Trace(MvxTraceLevel level, string message, params object[] args)
public static void Trace(string message, params object[] args)
public static void Warning(string message, params object[] args)
public static void Error(string message, params object[] args)
例外クラス生成
public static MvxException Exception(string message)
public static MvxException Exception(string message, params object[] args)
public static MvxException Exception(Exception innerException, string message, params object[] args)