当前位置: 首页>>代码示例>>C#>>正文


C# ManagementSystemProperties类代码示例

本文整理汇总了C#中ManagementSystemProperties的典型用法代码示例。如果您正苦于以下问题:C# ManagementSystemProperties类的具体用法?C# ManagementSystemProperties怎么用?C# ManagementSystemProperties使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ManagementSystemProperties类属于命名空间,在下文中一共展示了ManagementSystemProperties类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Process

 public Process(System.Management.ManagementObject theObject) {
     if ((CheckIfProperClass(theObject) == true)) {
         PrivateLateBoundObject = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
         curObj = PrivateLateBoundObject;
     }
     else {
         throw new System.ArgumentException("Class name does not match.");
     }
 }
开发者ID:ehershey,项目名称:development,代码行数:10,代码来源:Win32_Process.CS

示例2: NetworkAdapterConfiguration

 public NetworkAdapterConfiguration(System.Management.ManagementObject theObject) {
     Initialize();
     if ((CheckIfProperClass(theObject) == true)) {
         PrivateLateBoundObject = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
         curObj = PrivateLateBoundObject;
     }
     else {
         throw new System.ArgumentException("Class name does not match.");
     }
 }
开发者ID:amoskahiga,项目名称:ComputerBrowser,代码行数:11,代码来源:Win32_NetworkAdapterConfiguration.CS

示例3: RegistryTreeChangeEvent

 public RegistryTreeChangeEvent(System.Management.ManagementObject theObject)
 {
     Initialize();
     if ((CheckIfProperClass(theObject) == true)) {
         PrivateLateBoundObject = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
         curObj = PrivateLateBoundObject;
     }
     else {
         throw new System.ArgumentException("Class name does not match.");
     }
 }
开发者ID:jogibear9988,项目名称:JhVirtualKeyboard,代码行数:12,代码来源:RegistryTreeChangeEvent.cs

示例4: SystemRestore

 public SystemRestore(System.Management.ManagementBaseObject theObject)
 {
     Initialize();
     if ((CheckIfProperClass(theObject) == true)) {
         embeddedObj = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(theObject);
         curObj = embeddedObj;
         isEmbedded = true;
     }
     else {
         throw new System.ArgumentException("Class name does not match.");
     }
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:13,代码来源:SystemRestore.cs

示例5: ComputerSystem

 public ComputerSystem(ManagementObject theObject)
 {
     Initialize();
     if (CheckIfProperClass(theObject))
     {
         _privateLateBoundObject = theObject;
         _privateSystemProperties = new ManagementSystemProperties(_privateLateBoundObject);
         _curObj = _privateLateBoundObject;
     }
     else
     {
         throw new ArgumentException("Class name does not match.");
     }
 }
开发者ID:jardrake03,项目名称:incert,代码行数:14,代码来源:ComputerSystem.cs

示例6: NetworkAdapter

 public NetworkAdapter(System.Management.ManagementObject theObject)
 {
     Initialize();
     if ((CheckIfProperClass(theObject) == true))
     {
         PrivateLateBoundObject = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
         curObj = PrivateLateBoundObject;
     }
     else
     {
         throw new System.ArgumentException("Nazwa klasy nie jest odpowiednia.");
     }
 }
开发者ID:pjbober,项目名称:NetConfig,代码行数:14,代码来源:NetworkAdapter.cs

示例7: NetworkAdapterConfiguration

 public NetworkAdapterConfiguration(ManagementBaseObject theObject)
 {
     Initialize();
     if ((!CheckIfProperClass(theObject)))
     {
         throw new ArgumentException("Class name does not match.");
     }
     _embeddedObj = theObject;
     _privateSystemProperties = new ManagementSystemProperties(theObject);
     LateBoundObject = _embeddedObj;
     _isEmbedded = true;
 }
开发者ID:jardrake03,项目名称:incert,代码行数:12,代码来源:NetworkAdapterConfiguration.cs

示例8: InitializeObject

 private void InitializeObject(ManagementScope mgmtScope, ManagementPath path, ObjectGetOptions getOptions)
 {
     Initialize();
     if ((path != null))
     {
         if ((CheckIfProperClass(mgmtScope, path, getOptions) != true))
         {
             throw new ArgumentException("Class name does not match.");
         }
     }
     _privateLateBoundObject = new ManagementObject(mgmtScope, path, getOptions);
     _privateSystemProperties = new ManagementSystemProperties(_privateLateBoundObject);
     _curObj = _privateLateBoundObject;
 }
开发者ID:jardrake03,项目名称:incert,代码行数:14,代码来源:ComputerSystem.cs

示例9: Battery

 public Battery(System.Management.ManagementBaseObject theObject)
 {
     Initialize();
     if ((CheckIfProperClass(theObject) == true)) {
         embeddedObj = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(theObject);
         curObj = embeddedObj;
         isEmbedded = true;
     }
     else {
         throw new System.ArgumentException("クラス名が一致しません。");
     }
 }
开发者ID:nayutaya,项目名称:batty-misc,代码行数:13,代码来源:Battery.cs

示例10: OperatingSystem

		public OperatingSystem(ManagementBaseObject theObject)
		{
			Initialize();
			if (CheckIfProperClass(theObject))
			{
				embeddedObj = theObject;
				PrivateSystemProperties = new ManagementSystemProperties(theObject);
				curObj = embeddedObj;
				isEmbedded = true;
			}
			else
			{
				throw new ArgumentException("Class name does not match.");
			}
		}
开发者ID:CarverLab,项目名称:tubeCoreWebService.root,代码行数:15,代码来源:OperatingSystem.CS

示例11: WmiMonitorBrightnessMethods

 public WmiMonitorBrightnessMethods(System.Management.ManagementObject theObject)
 {
     Initialize();
     if ((CheckIfProperClass(theObject) == true)) {
         PrivateLateBoundObject = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
         curObj = PrivateLateBoundObject;
     }
     else {
         throw new System.ArgumentException("Class name does not match.");
     }
 }
开发者ID:dranger003,项目名称:WindowsFormsApplication2,代码行数:12,代码来源:WmiMonitorBrightnessMethods.cs

示例12: InitializeObject

 private void InitializeObject(System.Management.ManagementScope mgmtScope, System.Management.ManagementPath path, System.Management.ObjectGetOptions getOptions)
 {
     Initialize();
     if ((path != null)) {
         if ((CheckIfProperClass(mgmtScope, path, getOptions) != true)) {
             throw new System.ArgumentException("クラス名が一致しません。");
         }
     }
     PrivateLateBoundObject = new System.Management.ManagementObject(mgmtScope, path, getOptions);
     PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
     curObj = PrivateLateBoundObject;
 }
开发者ID:nayutaya,项目名称:batty-misc,代码行数:12,代码来源:Battery.cs

示例13: VirtualEthernetSwitchManagementService

 public VirtualEthernetSwitchManagementService(System.Management.ManagementObject theObject) {
     Initialize();
     if ((CheckIfProperClass(theObject) == true)) {
         PrivateLateBoundObject = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
         curObj = PrivateLateBoundObject;
     }
     else {
         throw new System.ArgumentException("Class name does not match.");
     }
 }
开发者ID:RSI-RKlein,项目名称:cloudstack,代码行数:11,代码来源:ROOT.virtualization.v2.Msvm_VirtualEthernetSwitchManagementService.cs

示例14: Logicaldisk

 public Logicaldisk(ManagementScope mgmtScope, ManagementPath path, ObjectGetOptions getOptions)
 {
     if ((path != null))
       {
     if ((CheckIfProperClass(mgmtScope, path, getOptions) != true))
     {
       throw new ArgumentException("Klassenname stimmt nicht überein.");
     }
       }
       PrivateLateBoundObject = new ManagementObject(mgmtScope, path, getOptions);
       PrivateSystemProperties = new ManagementSystemProperties(PrivateLateBoundObject);
       curObj = PrivateLateBoundObject;
 }
开发者ID:sanyaade-embedded-systems,项目名称:MPTagThat,代码行数:13,代码来源:Logicaldisk.cs

示例15: NetworkAdapter

 public NetworkAdapter(System.Management.ManagementBaseObject theObject)
 {
     Initialize();
     if ((CheckIfProperClass(theObject) == true)) {
         embeddedObj = theObject;
         PrivateSystemProperties = new ManagementSystemProperties(theObject);
         curObj = embeddedObj;
         isEmbedded = true;
     }
     else {
         throw new System.ArgumentException("El nombre de clase no coincide.");
     }
 }
开发者ID:jemc771,项目名称:IRIEXTREME,代码行数:13,代码来源:ROOT.CIMV2.Win32_NetworkAdapter.cs


注:本文中的ManagementSystemProperties类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。