NVelocity.Context.InternalContextAdapterImpl.AttachEventCartridge C# (CSharp) Method

AttachEventCartridge() public method

returns the user data context that we are wrapping Returns the base context that we are wrapping. Here, its this, but for other thing like VM related context contortions, it can be something else
public AttachEventCartridge ( EventCartridge eventCartridge ) : EventCartridge
eventCartridge NVelocity.App.Events.EventCartridge
return NVelocity.App.Events.EventCartridge
        public EventCartridge AttachEventCartridge(EventCartridge eventCartridge)
        {
            if (internalEventContext != null)
            {
                return internalEventContext.AttachEventCartridge(eventCartridge);
            }

            return null;
        }