Dev2.Runtime.Configuration.ComponentModel.SettingsObject.SettingsObject C# (CSharp) Method

SettingsObject() private method

Represents and object that contains settings, the view type to display it and the view model type to use as a backer for the view. To construct these objects please use the static BuildGraph() method.
private SettingsObject ( object dataContext, Type view, Type viewModel ) : System
dataContext object
view System.Type
viewModel System.Type
return System
        private SettingsObject(object dataContext, Type view, Type viewModel)
        {
            Object = dataContext;
            View = view;
            ViewModel = viewModel;

            Children = new List<SettingsObject>();
        }