Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Wmi / managed / System / Management / Method.cs / 1305376 / Method.cs
using System; using System.Runtime.InteropServices; using WbemClient_v1; namespace System.Management { //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC// ////// ///Contains information about a WMI method. ////// //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC// public class MethodData { private ManagementObject parent; //needed to be able to get method qualifiers private string methodName; private IWbemClassObjectFreeThreaded wmiInParams; private IWbemClassObjectFreeThreaded wmiOutParams; private QualifierDataCollection qualifiers; internal MethodData(ManagementObject parent, string methodName) { this.parent = parent; this.methodName = methodName; RefreshMethodInfo(); qualifiers = null; } //This private function is used to refresh the information from the Wmi object before returning the requested data private void RefreshMethodInfo() { int status = (int)ManagementStatus.Failed; try { status = parent.wbemObject.GetMethod_(methodName, 0, out wmiInParams, out wmiOutParams); } catch (COMException e) { ManagementException.ThrowWithExtendedInfo(e); } if ((status & 0xfffff000) == 0x80041000) { ManagementException.ThrowWithExtendedInfo((ManagementStatus)status); } else if ((status & 0x80000000) != 0) { Marshal.ThrowExceptionForHR(status); } } ///using System; /// using System.Management; /// /// // This example shows how to obtain meta data /// // about a WMI method with a given name in a given WMI class /// /// class Sample_MethodData /// { /// public static int Main(string[] args) { /// /// // Get the "SetPowerState" method in the Win32_LogicalDisk class /// ManagementClass diskClass = new ManagementClass("win32_logicaldisk"); /// MethodData m = diskClass.Methods["SetPowerState"]; /// /// // Get method name (albeit we already know it) /// Console.WriteLine("Name: " + m.Name); /// /// // Get the name of the top-most class where this specific method was defined /// Console.WriteLine("Origin: " + m.Origin); /// /// // List names and types of input parameters /// ManagementBaseObject inParams = m.InParameters; /// foreach(PropertyData pdata in inParams.Properties) { /// Console.WriteLine(); /// Console.WriteLine("InParam_Name: " + pdata.Name); /// Console.WriteLine("InParam_Type: " + pdata.Type); /// } /// /// // List names and types of output parameters /// ManagementBaseObject outParams = m.OutParameters; /// foreach(PropertyData pdata in outParams.Properties) { /// Console.WriteLine(); /// Console.WriteLine("OutParam_Name: " + pdata.Name); /// Console.WriteLine("OutParam_Type: " + pdata.Type); /// } /// /// return 0; /// } /// } ///
///Imports System /// Imports System.Management /// /// ' This example shows how to obtain meta data /// ' about a WMI method with a given name in a given WMI class /// /// Class Sample_ManagementClass /// Overloads Public Shared Function Main(args() As String) As Integer /// /// ' Get the "SetPowerState" method in the Win32_LogicalDisk class /// Dim diskClass As New ManagementClass("Win32_LogicalDisk") /// Dim m As MethodData = diskClass.Methods("SetPowerState") /// /// ' Get method name (albeit we already know it) /// Console.WriteLine("Name: " & m.Name) /// /// ' Get the name of the top-most class where /// ' this specific method was defined /// Console.WriteLine("Origin: " & m.Origin) /// /// ' List names and types of input parameters /// Dim inParams As ManagementBaseObject /// inParams = m.InParameters /// Dim pdata As PropertyData /// For Each pdata In inParams.Properties /// Console.WriteLine() /// Console.WriteLine("InParam_Name: " & pdata.Name) /// Console.WriteLine("InParam_Type: " & pdata.Type) /// Next pdata /// /// ' List names and types of output parameters /// Dim outParams As ManagementBaseObject /// outParams = m.OutParameters /// For Each pdata in outParams.Properties /// Console.WriteLine() /// Console.WriteLine("OutParam_Name: " & pdata.Name) /// Console.WriteLine("OutParam_Type: " & pdata.Type) /// Next pdata /// /// Return 0 /// End Function /// End Class ///
////// ///Gets or sets the name of the method. ////// public string Name { get { return methodName != null ? methodName : ""; } } ///The name of the method. ////// ///Gets or sets the input parameters to the method. Each /// parameter is described as a property in the object. If a parameter is both in /// and out, it appears in both the ///and /// properties. /// ////// A ////// containing all the input parameters to the /// method. /// public ManagementBaseObject InParameters { get { RefreshMethodInfo(); return (null == wmiInParams) ? null : new ManagementBaseObject(wmiInParams); } } ///Each parameter in the object should have an /// ////// qualifier, identifying the order of the parameters in the method call. /// ///Gets or sets the output parameters to the method. Each /// parameter is described as a property in the object. If a parameter is both in /// and out, it will appear in both the ///and /// properties. /// ///A ///containing all the output parameters to the method. /// public ManagementBaseObject OutParameters { get { RefreshMethodInfo(); return (null == wmiOutParams) ? null : new ManagementBaseObject(wmiOutParams); } } ///Each parameter in this object should have an /// ///qualifier to identify the /// order of the parameters in the method call. The ReturnValue property is a special property of /// the ////// object and /// holds the return value of the method. /// ///Gets the name of the management class in which the method was first /// introduced in the class inheritance hierarchy. ////// A string representing the originating /// management class name. /// public string Origin { get { string className = null; int status = parent.wbemObject.GetMethodOrigin_(methodName, out className); if (status < 0) { if (status == (int)tag_WBEMSTATUS.WBEM_E_INVALID_OBJECT) className = String.Empty; // Interpret as an unspecified property - return "" else if ((status & 0xfffff000) == 0x80041000) ManagementException.ThrowWithExtendedInfo((ManagementStatus)status); else Marshal.ThrowExceptionForHR(status); } return className; } } ////// ///Gets a collection of qualifiers defined in the /// method. Each element is of type ////// and contains information such as the qualifier name, value, and /// flavor. /// A ///containing the /// qualifiers for this method. /// public QualifierDataCollection Qualifiers { get { if (qualifiers == null) qualifiers = new QualifierDataCollection(parent, methodName, QualifierType.MethodQualifier); return qualifiers; } } }//MethodData } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Runtime.InteropServices; using WbemClient_v1; namespace System.Management { //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC// /// /// ///Contains information about a WMI method. ////// //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC// public class MethodData { private ManagementObject parent; //needed to be able to get method qualifiers private string methodName; private IWbemClassObjectFreeThreaded wmiInParams; private IWbemClassObjectFreeThreaded wmiOutParams; private QualifierDataCollection qualifiers; internal MethodData(ManagementObject parent, string methodName) { this.parent = parent; this.methodName = methodName; RefreshMethodInfo(); qualifiers = null; } //This private function is used to refresh the information from the Wmi object before returning the requested data private void RefreshMethodInfo() { int status = (int)ManagementStatus.Failed; try { status = parent.wbemObject.GetMethod_(methodName, 0, out wmiInParams, out wmiOutParams); } catch (COMException e) { ManagementException.ThrowWithExtendedInfo(e); } if ((status & 0xfffff000) == 0x80041000) { ManagementException.ThrowWithExtendedInfo((ManagementStatus)status); } else if ((status & 0x80000000) != 0) { Marshal.ThrowExceptionForHR(status); } } ///using System; /// using System.Management; /// /// // This example shows how to obtain meta data /// // about a WMI method with a given name in a given WMI class /// /// class Sample_MethodData /// { /// public static int Main(string[] args) { /// /// // Get the "SetPowerState" method in the Win32_LogicalDisk class /// ManagementClass diskClass = new ManagementClass("win32_logicaldisk"); /// MethodData m = diskClass.Methods["SetPowerState"]; /// /// // Get method name (albeit we already know it) /// Console.WriteLine("Name: " + m.Name); /// /// // Get the name of the top-most class where this specific method was defined /// Console.WriteLine("Origin: " + m.Origin); /// /// // List names and types of input parameters /// ManagementBaseObject inParams = m.InParameters; /// foreach(PropertyData pdata in inParams.Properties) { /// Console.WriteLine(); /// Console.WriteLine("InParam_Name: " + pdata.Name); /// Console.WriteLine("InParam_Type: " + pdata.Type); /// } /// /// // List names and types of output parameters /// ManagementBaseObject outParams = m.OutParameters; /// foreach(PropertyData pdata in outParams.Properties) { /// Console.WriteLine(); /// Console.WriteLine("OutParam_Name: " + pdata.Name); /// Console.WriteLine("OutParam_Type: " + pdata.Type); /// } /// /// return 0; /// } /// } ///
///Imports System /// Imports System.Management /// /// ' This example shows how to obtain meta data /// ' about a WMI method with a given name in a given WMI class /// /// Class Sample_ManagementClass /// Overloads Public Shared Function Main(args() As String) As Integer /// /// ' Get the "SetPowerState" method in the Win32_LogicalDisk class /// Dim diskClass As New ManagementClass("Win32_LogicalDisk") /// Dim m As MethodData = diskClass.Methods("SetPowerState") /// /// ' Get method name (albeit we already know it) /// Console.WriteLine("Name: " & m.Name) /// /// ' Get the name of the top-most class where /// ' this specific method was defined /// Console.WriteLine("Origin: " & m.Origin) /// /// ' List names and types of input parameters /// Dim inParams As ManagementBaseObject /// inParams = m.InParameters /// Dim pdata As PropertyData /// For Each pdata In inParams.Properties /// Console.WriteLine() /// Console.WriteLine("InParam_Name: " & pdata.Name) /// Console.WriteLine("InParam_Type: " & pdata.Type) /// Next pdata /// /// ' List names and types of output parameters /// Dim outParams As ManagementBaseObject /// outParams = m.OutParameters /// For Each pdata in outParams.Properties /// Console.WriteLine() /// Console.WriteLine("OutParam_Name: " & pdata.Name) /// Console.WriteLine("OutParam_Type: " & pdata.Type) /// Next pdata /// /// Return 0 /// End Function /// End Class ///
////// ///Gets or sets the name of the method. ////// public string Name { get { return methodName != null ? methodName : ""; } } ///The name of the method. ////// ///Gets or sets the input parameters to the method. Each /// parameter is described as a property in the object. If a parameter is both in /// and out, it appears in both the ///and /// properties. /// ////// A ////// containing all the input parameters to the /// method. /// public ManagementBaseObject InParameters { get { RefreshMethodInfo(); return (null == wmiInParams) ? null : new ManagementBaseObject(wmiInParams); } } ///Each parameter in the object should have an /// ////// qualifier, identifying the order of the parameters in the method call. /// ///Gets or sets the output parameters to the method. Each /// parameter is described as a property in the object. If a parameter is both in /// and out, it will appear in both the ///and /// properties. /// ///A ///containing all the output parameters to the method. /// public ManagementBaseObject OutParameters { get { RefreshMethodInfo(); return (null == wmiOutParams) ? null : new ManagementBaseObject(wmiOutParams); } } ///Each parameter in this object should have an /// ///qualifier to identify the /// order of the parameters in the method call. The ReturnValue property is a special property of /// the ////// object and /// holds the return value of the method. /// ///Gets the name of the management class in which the method was first /// introduced in the class inheritance hierarchy. ////// A string representing the originating /// management class name. /// public string Origin { get { string className = null; int status = parent.wbemObject.GetMethodOrigin_(methodName, out className); if (status < 0) { if (status == (int)tag_WBEMSTATUS.WBEM_E_INVALID_OBJECT) className = String.Empty; // Interpret as an unspecified property - return "" else if ((status & 0xfffff000) == 0x80041000) ManagementException.ThrowWithExtendedInfo((ManagementStatus)status); else Marshal.ThrowExceptionForHR(status); } return className; } } ////// ///Gets a collection of qualifiers defined in the /// method. Each element is of type ////// and contains information such as the qualifier name, value, and /// flavor. /// A ///containing the /// qualifiers for this method. /// public QualifierDataCollection Qualifiers { get { if (qualifiers == null) qualifiers = new QualifierDataCollection(parent, methodName, QualifierType.MethodQualifier); return qualifiers; } } }//MethodData } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SetterBase.cs
- BidOverLoads.cs
- RouteItem.cs
- StorageInfo.cs
- HiddenFieldPageStatePersister.cs
- ObjectView.cs
- TextTreeDeleteContentUndoUnit.cs
- FormViewUpdatedEventArgs.cs
- IntSecurity.cs
- COM2PropertyDescriptor.cs
- Rotation3D.cs
- UpdatePanelTriggerCollection.cs
- IpcChannelHelper.cs
- EntityProxyFactory.cs
- DriveInfo.cs
- ApplicationProxyInternal.cs
- SymbolType.cs
- HeaderUtility.cs
- Base64WriteStateInfo.cs
- LogExtentCollection.cs
- Aggregates.cs
- InheritanceUI.cs
- DateTimeParse.cs
- EntityTemplateUserControl.cs
- GifBitmapDecoder.cs
- CompilerCollection.cs
- RSACryptoServiceProvider.cs
- TextServicesCompartmentEventSink.cs
- SqlDataSourceView.cs
- PrintDocument.cs
- IgnoreSection.cs
- DocumentViewerHelper.cs
- GeneralTransform3D.cs
- QilLoop.cs
- TextEditor.cs
- ClonableStack.cs
- PageCodeDomTreeGenerator.cs
- GridProviderWrapper.cs
- ProxyHelper.cs
- MultiByteCodec.cs
- NativeMethods.cs
- UIElementParagraph.cs
- SynchronizationLockException.cs
- TemplatePartAttribute.cs
- ToolCreatedEventArgs.cs
- SystemException.cs
- RoleGroupCollection.cs
- SiteMapPath.cs
- X509CertificateCollection.cs
- ZipIOLocalFileHeader.cs
- PageThemeParser.cs
- InheritanceContextChangedEventManager.cs
- AttributeData.cs
- Baml2006KnownTypes.cs
- BasePattern.cs
- XmlTypeMapping.cs
- XD.cs
- RegexReplacement.cs
- SiteMapSection.cs
- LiteralTextContainerControlBuilder.cs
- sqlnorm.cs
- Matrix.cs
- RequestCachePolicy.cs
- ReadWriteObjectLock.cs
- SqlBulkCopyColumnMappingCollection.cs
- ConsumerConnectionPoint.cs
- GeneralTransformGroup.cs
- Automation.cs
- DoubleAnimation.cs
- Int32KeyFrameCollection.cs
- PolygonHotSpot.cs
- ResXResourceSet.cs
- ComponentChangingEvent.cs
- ListViewInsertedEventArgs.cs
- Panel.cs
- Point3DAnimationUsingKeyFrames.cs
- JpegBitmapDecoder.cs
- ImageDesigner.cs
- WebUtil.cs
- UmAlQuraCalendar.cs
- TraceSection.cs
- EncryptedKey.cs
- StandardMenuStripVerb.cs
- WebBrowserProgressChangedEventHandler.cs
- MetabaseServerConfig.cs
- ClientTargetSection.cs
- XmlSchemaInferenceException.cs
- TrackingStringDictionary.cs
- ClientBuildManager.cs
- ExceptionNotification.cs
- DesignerTransactionCloseEvent.cs
- NetTcpBindingElement.cs
- TextTreeTextElementNode.cs
- Padding.cs
- BCLDebug.cs
- TraceInternal.cs
- FormatSelectingMessageInspector.cs
- FrameworkElementAutomationPeer.cs
- BaseInfoTable.cs
- IOThreadTimer.cs