懒羊羊
2023-12-28 e46d3baaf3e8d7d85f4bafec3aad75e52b078408
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.ServiceModel;
 
namespace YX.WebService
{
    [GeneratedCode("System.ServiceModel", "4.0.0.0"), EditorBrowsable(EditorBrowsableState.Advanced), DebuggerStepThrough, MessageContract(WrapperName = "WMI08", WrapperNamespace = "http://tempuri.org/", IsWrapped = true)]
    public class WMI08Request
    {
        [MessageBodyMember(Namespace = "http://tempuri.org/", Order = 0)]
        public string method;
 
        public WMI08Request()
        {
        }
 
        public WMI08Request(string method)
        {
            this.method = method;
        }
    }
}