2 instantiations of MethodData
System.Management (2)
methodset.cs (2)
301return new MethodData(parent, (string)en.Current); 341return new MethodData(parent, methodName);
26 references to MethodData
System.Management (26)
managementclass.cs (1)
365 /// <para>Gets or sets a collection of <see cref='System.Management.MethodData'/> objects that
method.cs (5)
152/// and out, it appears in both the <see cref='System.Management.MethodData.InParameters'/> and <see cref='System.Management.MethodData.OutParameters'/> 177/// and out, it will appear in both the <see cref='System.Management.MethodData.InParameters'/> and <see cref='System.Management.MethodData.OutParameters'/> 188/// the <see cref='System.Management.MethodData.OutParameters'/>
methodset.cs (18)
147foreach (MethodData m in this) 152/// <para>Copies the <see cref='System.Management.MethodDataCollection'/> to a specialized <see cref='System.Management.MethodData'/> 155/// <param name='methodArray'>The destination array to which to copy the <see cref='System.Management.MethodData'/> objects.</param> 157public void CopyTo(MethodData[] methodArray, int index) 188/// <para>Represents the enumerator for <see cref='System.Management.MethodData'/> 293/// <para>Returns the current <see cref='System.Management.MethodData'/> in the <see cref='System.Management.MethodDataCollection'/> 296/// <value>The current <see cref='System.Management.MethodData'/> item in the collection.</value> 297public MethodData Current 330/// <para>Returns the specified <see cref='System.Management.MethodData'/> from the <see cref='System.Management.MethodDataCollection'/>.</para> 333/// <value>A <see cref='System.Management.MethodData'/> instance containing all information about the specified method.</value> 334public virtual MethodData this[string methodName] 347/// <para>Removes a <see cref='System.Management.MethodData'/> from the <see cref='System.Management.MethodDataCollection'/>.</para> 352/// Removing <see cref='System.Management.MethodData'/> objects from the <see cref='System.Management.MethodDataCollection'/> 384/// <para>Adds a <see cref='System.Management.MethodData'/> to the <see cref='System.Management.MethodDataCollection'/>.</para> 387/// <para>Adds a <see cref='System.Management.MethodData'/> to the <see cref='System.Management.MethodDataCollection'/>. This overload will 392/// <para> Adding <see cref='System.Management.MethodData'/> objects to the <see cref='System.Management.MethodDataCollection'/> can only 405/// <para>Adds a <see cref='System.Management.MethodData'/> to the <see cref='System.Management.MethodDataCollection'/>. This overload will add a new method with the 412/// <para> Adding <see cref='System.Management.MethodData'/> objects to the <see cref='System.Management.MethodDataCollection'/> can only be
WmiGenerator.cs (2)
729foreach(MethodData meth in classobj.Methods) 2848MethodData meth = classobj.Methods[PublicMethods.GetKey(k).ToString()];