BuildIt.UIHelper.RegisterForUIAccess C# (CSharp) Метод

RegisterForUIAccess() публичный статический Метод

public static RegisterForUIAccess ( this requiresAccess, IRequiresUIAccess hasAccess ) : void
requiresAccess this
hasAccess IRequiresUIAccess
Результат void
        public static void RegisterForUIAccess(this IRegisterForUIAccess requiresAccess, IRequiresUIAccess hasAccess)
        {
            var cxt = hasAccess?.UIContext;
            if (cxt == null) return;
            requiresAccess?.RegisterForUIAccess(hasAccess?.UIContext);
        }