Open.Core.Spacing.InitializeSyncing C# (CSharp) 메소드

InitializeSyncing() 개인적인 메소드

private InitializeSyncing ( ) : void
리턴 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.
                                       }
                                   };
        }