public ElementInstance(ILinkElement instance)
        {
            this.instance = instance;
            invoker = CreateInvoker(instance);

            // You would do it smarter
            IsBefore = instance.GetType().BaseType.Name.StartsWith("Before");
            IsAfter = instance.GetType().BaseType.Name.StartsWith("After");

            if (IsAfter || IsBefore)
                return;

            IsSurround = true;
        }
Exemple #2
0
        public ElementInstance(ILinkElement instance)
        {
            this.instance = instance;
            invoker       = CreateInvoker(instance);

            // You would do it smarter
            IsBefore = instance.GetType().BaseType.Name.StartsWith("Before");
            IsAfter  = instance.GetType().BaseType.Name.StartsWith("After");

            if (IsAfter || IsBefore)
            {
                return;
            }

            IsSurround = true;
        }