void ISupportInitialize.EndInit()
 {
     TestHelperLog.Log("EndInit " + Identity);
 }
 public ExampleClass()
 {
     TestHelperLog.Log("ctor" + Identity);
 }
 void ISupportInitialize.BeginInit()
 {
     TestHelperLog.Log("BeginInit " + Identity);
 }
 public static void SetExample(DependencyObject element, string value)
 {
     TestHelperLog.Log("ExampleDependencyObject.SetExample");
     element.SetValue(ExampleProperty, value);
 }
 public static string GetExample(DependencyObject element)
 {
     TestHelperLog.Log("ExampleDependencyObject.GetExample");
     return((string)element.GetValue(ExampleProperty));
 }
 public static void SetExampleCollection(DependencyObject element, ExampleClassList value)
 {
     TestHelperLog.Log("ExampleService.SetExampleCollection");
     element.SetValue(ExampleCollectionProperty, value);
 }
 public static ExampleClassList GetExampleCollection(DependencyObject element)
 {
     TestHelperLog.Log("ExampleService.GetExampleCollection");
     return((ExampleClassList)element.GetValue(ExampleCollectionProperty));
 }
Exemple #8
0
        public StringExtension(string s)
        {
            TestHelperLog.Log(this.GetType().Name + " " + s);

            this.s = s;
        }