Open.Core.Spacing.InitializeSyncing C# (CSharp) Method

InitializeSyncing() private method

private InitializeSyncing ( ) : void
return void
        private void InitializeSyncing()
        {
            PropertyChanged += delegate(object sender, PropertyChangedEventArgs args)
                                   {
                                       string name = args.Property.Name;
                                       try
                                       {
                                           SyncEdge(ToEdge(name));
                                       }
                                       catch (Exception)
                                       {
                                           // Ignore - non supported property.
                                       }
                                   };
        }