Microsoft.Practices.Prism.Regions.Behaviors.ClearChildViewsRegionBehavior.GetClearChildViews C# (CSharp) Метод

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

Gets the ClearChildViews attached property from a DependencyObject.
public static GetClearChildViews ( DependencyObject target ) : bool
target DependencyObject The object from which to get the value.
Результат bool
        public static bool GetClearChildViews(DependencyObject target)
        {
            if (target == null)
            {
                throw new ArgumentNullException("target");
            }

            return (bool)target.GetValue(ClearChildViewsRegionBehavior.ClearChildViewsProperty);
        }