1 write to availableNamespaces
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (1)
458this.availableNamespaces = this.importsModelItem.Properties[NamespaceListPropertyDescriptor.AvailableNamespacesPropertyName].ComputedValue as Dictionary<string, List<string>>;
11 references to availableNamespaces
System.Activities.Presentation (11)
System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (11)
196this.inputComboBox.ItemsSource = this.availableNamespaces.Keys; 321if (!this.availableNamespaces.ContainsKey(namespaceData.Namespace)) 455if (this.availableNamespaces == null) 459Fx.Assert(this.availableNamespaces != null, "Available namespace dictionary is not in right format"); 530if (this.availableNamespaces != null) 545if (this.availableNamespaces != null) 568if (this.availableNamespaces.TryGetValue(ns, out assemblyList)) 573this.availableNamespaces.Remove(ns); 624if (!this.availableNamespaces.TryGetValue(ns, out assemblyList)) 627this.availableNamespaces.Add(ns, assemblyList); 669Fx.Assert(this.availableNamespaces != null, "available namespace table should have been set before calling this method");