Telerik.Web.Mvc.UI.Fluent.WindowClientEventsBuilder.WindowClientEventsBuilder C# (CSharp) Метод

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

Initializes a new instance of the WindowClientEventsBuilder class.
public WindowClientEventsBuilder ( WindowClientEvents clientEvents, System.Web.Mvc.ViewContext viewContext ) : System
clientEvents WindowClientEvents The client events.
viewContext System.Web.Mvc.ViewContext The view context.
Результат System
        public WindowClientEventsBuilder(WindowClientEvents clientEvents, ViewContext viewContext)
        {
            Guard.IsNotNull(clientEvents, "clientEvents");
            Guard.IsNotNull(viewContext, "viewContext");

            this.clientEvents = clientEvents;
            this.viewContext = viewContext;
        }