forked from libvirt/libvirt-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interface.cs
42 lines (29 loc) · 844 Bytes
/
Interface.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Copyright (C)
* Arnaud Champion <[email protected]>
* Jaromír Červenka <[email protected]>
*
* See COPYING.LIB for the License of this software
*/
namespace Libvirt
{
/// <summary>
/// The Interface class expose all interface related methods
/// </summary>
public class Interface
{
// TODO virInterfaceCreate
// TODO virInterfaceDefineXML
// TODO virInterfaceDestroy
// TODO virInterfaceFree
// TODO virInterfaceGetConnect
// TODO virInterfaceGetMACString
// TODO virInterfaceGetName
// TODO virInterfaceGetXMLDesc
// TODO virInterfaceIsActive
// TODO virInterfaceLookupByMACString
// TODO virInterfaceLookupByName
// TODO virInterfaceRef
// TODO virInterfaceUndefine
}
}