Exemplo n.º 1
0
 internal UriHistory(UriHistoryCollection holder, Uri address, int index)
 {
     Debug.Assert(holder != null && address != null);
     _holder      = holder;
     _displayName = String.Empty;
     _address     = address;
     _index       = index;
 }
Exemplo n.º 2
0
 protected ConfigurationBase(ConfigManagerImpl configManager, string uriHistoryEntryName)
 {
     ConfigManager          = configManager;
     PluginStatusCollection = new PluginStatusCollection(this);
     UriHistoryCollection   = new UriHistoryCollection(this, uriHistoryEntryName);
 }