31 references to BaseGet
System (3)
compmod\system\collections\specialized\namevaluecollection.cs (3)
273ArrayList values = (ArrayList)BaseGet(name); 293ArrayList values = (ArrayList)BaseGet(name); 301ArrayList values = (ArrayList)BaseGet(name);
System.Configuration (8)
System\Configuration\ConfigurationValues.cs (5)
45return (BaseGet(key) != null); 60return (ConfigurationValue)BaseGet(key); 151ConfigurationValue configurationValue = (ConfigurationValue)BaseGet(key); 161ConfigurationValue configurationValue = (ConfigurationValue)BaseGet(key); 171ConfigurationValue configurationValue = (ConfigurationValue)BaseGet(key);
System\Configuration\PropertyInformationCollection.cs (3)
46PropertyInformation result = (PropertyInformation) BaseGet (propertyName); 51(PropertyInformation) BaseGet (ConfigurationProperty.DefaultCollectionPropertyName); 63return (PropertyInformation)BaseGet(BaseGetKey(index));
System.Management (3)
managementnamedvaluecollection.cs (3)
71 object val = base.BaseGet(name); 138 object val = base.BaseGet (name); 179 return base.BaseGet(name);
System.Web (16)
Configuration\VirtualDirectoryMappingCollection.cs (1)
85return (VirtualDirectoryMapping) BaseGet(virtualDirectory);
httpapplicationstate.cs (1)
200obj = BaseGet(name);
HttpCookieCollection.cs (2)
94if (BaseGet(cookie.Name) != null) { 256HttpCookie cookie = (HttpCookie)BaseGet(name);
HttpDictionary.cs (1)
29return BaseGet(key);
HttpFileCollection.cs (1)
133HttpPostedFile file = (HttpPostedFile)BaseGet(name);
HttpModuleCollection.cs (1)
74return(IHttpModule)BaseGet(name);
HttpServerVarsCollection.cs (4)
83var existingEntry = (HttpServerVarsCollectionEntry)BaseGet(entry.Name); 197string var = GetServerVar(BaseGet(name)); 206return GetServerVar(BaseGet(name)); 292HttpServerVarsCollectionEntry entry = (HttpServerVarsCollectionEntry) BaseGet(name);
State\SessionStateItemCollection.cs (5)
64return BaseGet(name); 68Object oldValue = BaseGet(name); 101return (BaseGet(name) != null); 345Object obj = BaseGet(name); 474if (BaseGet(null) != null) {
System.Web.Mobile (1)
UI\MobileControls\StyleSheet.cs (1)
696return (Style)BaseGet(name);