23 references to GetValue
System.ServiceModel (23)
System\ServiceModel\ComIntegration\CatalogUtil.cs (3)
134string roleName = (string)role.GetValue("Name"); 140string appRoleName = (string)appRole.GetValue("Name"); 150string user = (string)userObject.GetValue("User");
System\ServiceModel\ComIntegration\DllHostInitializer.cs (6)
83bool processPooled = ((int)application.GetValue("ConcurrentApps")) > 1; 91bool processRecycled = ((int)application.GetValue("RecycleLifetimeLimit")) > 0 || 92((int)application.GetValue("RecycleCallLimit")) > 0 || 93((int)application.GetValue("RecycleActivationLimit")) > 0 || 94((int)application.GetValue("RecycleMemoryLimit")) > 0; 144Guid clsid = Fx.CreateGuid((string)classObject.GetValue("CLSID"));
System\ServiceModel\ComIntegration\ServiceInfo.cs (12)
90this.appid = Fx.CreateGuid((string)application.GetValue("ID")); 91this.partitionId = Fx.CreateGuid((string)application.GetValue("AppPartitionID")); 92this.bitness = (Bitness)classObject.GetValue("Bitness"); 93this.transactionOption = (TransactionOption)classObject.GetValue("Transaction"); 101adminIsolationLevel = (COMAdminIsolationLevel)classObject.GetValue("TxIsolationLevel"); 128adminThreadingModel = (COMAdminThreadingModel)classObject.GetValue("ThreadingModel"); 139objectPoolingEnabled = (bool)classObject.GetValue("ObjectPoolingEnabled"); 148maxPoolSize = (int)classObject.GetValue("MaxPoolSize"); 155appSecurityEnabled = (bool)application.GetValue( 161classSecurityEnabled = (bool)classObject.GetValue( 205if (DiagnosticUtility.Utility.TryCreateGuid((string)interfaceObject.GetValue("IID"), out otherInterfaceID)) 408this.name = (string)methodObject.GetValue("Name");
System\ServiceModel\ComIntegration\WebHostedComPlusServiceHost.cs (2)
70string otherClsid = (string)tempClassObject.GetValue("CLSID"); 136int activation = (int)application.GetValue("Activation");