SuperMap.WindowsPhone.Core.DictionaryChangedEventArgs.DictionaryChangedEventArgs C# (CSharp) Méthode

DictionaryChangedEventArgs() private méthode

private DictionaryChangedEventArgs ( NotifyCollectionChangedAction action, string key, object oldValue, object newValue ) : System
action NotifyCollectionChangedAction
key string
oldValue object
newValue object
Résultat System
        internal DictionaryChangedEventArgs(NotifyCollectionChangedAction action, string key, object oldValue, object newValue)
        {
            this.Action = action;
            this.Key = key;
            this.OldValue = oldValue;
            this.NewValue = newValue;
        }
DictionaryChangedEventArgs