Beispiel #1
0
 public RemoteDictionary(RemoteObject <IDictionary <TKey, TValue> > remoteObject) : base(remoteObject)
 {
 }
Beispiel #2
0
 /// <summary>
 /// Clones a <see cref="RemoteObject<T>"/>
 /// </summary>
 /// <param name="remoteObject"></param>
 public RemoteObject(RemoteObject <T> remoteObject)
 {
     this.parent = remoteObject.parent;
     this.parentAttributeName = remoteObject.parentAttributeName;
 }
Beispiel #3
0
 public static new void AddCommands(CommandController controller, string nameOfAttribute, Func <CommandData, IDictionary <TKey, TValue> > getter, Action <CommandData, IDictionary <TKey, TValue> > setter)
 {
     RemoteObject <IDictionary <TKey, TValue> > .AddCommands(controller, nameOfAttribute, getter, setter);
 }