16 references to PropertyName
ComSvcConfig (16)
ComAdminWrapper.cs (16)
392if (!SetComponentProperty(application, ListenerWSUName, PropertyName.Description, ListenerComponentDescription)) 394if (!SetComponentProperty(application, ListenerWSUName, PropertyName.InitializesServerApplication, "1")) 396if (!SetComponentProperty(application, ListenerWSUName, PropertyName.ComponentAccessChecksEnabled, "0")) 428component.SetValue(PropertyName.IsPrivateComponent, true); 448int bitness = (int)component.GetValue(PropertyName.Bitness); 581appObj.SetValue(PropertyName.ApplicationDirectory, path); 618this.appdir = (string)appObj.GetValue(PropertyName.ApplicationDirectory); 620this.serverActivated = ((int)appObj.GetValue(PropertyName.Activation)) == 1; 621this.systemApplication = (bool)appObj.GetValue(PropertyName.IsSystem); 622this.processPooled = ((int)appObj.GetValue(PropertyName.ConcurrentApps)) > 1; 623this.automaticRecycling = (((int)appObj.GetValue(PropertyName.RecycleActivationLimit) > 0) || 624((int)appObj.GetValue(PropertyName.RecycleCallLimit) > 0) || 625((int)appObj.GetValue(PropertyName.RecycleLifetimeLimit) > 0) || 626((int)appObj.GetValue(PropertyName.RecycleMemoryLimit) > 0)); 850this.isPrivate = (bool)compObj.GetValue(PropertyName.IsPrivateComponent); 851this.transactionOption = (TransactionOption)compObj.GetValue(PropertyName.TransactionOption);