Class ResourceInterfaces
Definition
- Namespace:
- Tizen.Network.Io
TConnectivity
- Assembly:
- Tizen.Network.IoTConnectivity.dll
This class contains resource interfaces and provides APIs to manage, add, or remove those interfaces. A resource interface indicates a class or category of resources.
C#
Copy
public class ResourceInterfaces : IEnumerable<string>, IEnumerable, IDisposable
- Inheritance
-
objectResource
Interfaces
- Implements
-
System.Collections.Generic.IEnumerable<T><string>System.
Collections. IEnumerable System.IDisposable
Constructors
Declaration
C#
Copy
public ResourceInterfaces()
Examples
Copy
ResourceInterfaces resourceInterfaces = new ResourceInterfaces();
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the iotcon is not supported. |
System. |
Thrown when there is not enough memory. |
ResourceInterfaces(IEnumerable<string>)
Constructor of ResourceInterfaces using list of interfaces.
Declaration
C#
Copy
public ResourceInterfaces(IEnumerable<string> ifaces)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<T><string> | ifaces | List of resource interfaces. |
Examples
Copy
ResourceInterfaces resourceInterfaces = new ResourceInterfaces(new List<string>()
{ ResourceInterfaces.LinkInterface, ResourceInterfaces.ReadonlyInterface });
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the iotcon is not supported. |
System. |
Thrown when there is not enough memory. |
System. |
Thrown when there is an invalid parameter. |
Fields
BatchInterface
Batch Interface, which is used to manipulate (GET, PUT, POST, DELETE) on other resource contained in a resource.
Declaration
C#
Copy
public const string BatchInterface = "oic.if.b"
Field Value
Type | Description |
---|---|
string |
Declaration
C#
Copy
public const string DefaultInterface = "oic.if.baseline"
Field Value
Type | Description |
---|---|
string |
GroupInterface
Group Interface, which is used to manipulate (GET, PUT, POST) a group of remote resources.
Declaration
C#
Copy
public const string GroupInterface = "oic.mi.grp"
Field Value
Type | Description |
---|---|
string |
LinkInterface
List Links Interface, which is used to list the references to other resources contained in a resource.
Declaration
C#
Copy
public const string LinkInterface = "oic.if.ll"
Field Value
Type | Description |
---|---|
string |
ReadonlyInterface
Read-Only Interface, which is used to limit the methods that can be applied to a resource to GET only.
Declaration
C#
Copy
public const string ReadonlyInterface = "oic.if.r"
Field Value
Type | Description |
---|---|
string |
Properties
Declaration
C#
Copy
public int Count { get; }
Property Value
Type | Description |
---|---|
int | Count of interfaces in the list. |
Examples
Copy
ResourceInterfaces resourceInterfaces = new ResourceInterfaces(new List<string>()
{ ResourceInterfaces.LinkInterface, ResourceInterfaces.ReadonlyInterface });
Console.WriteLine("There are {0} interfaces", resourceInterfaces.Count);
Methods
Declaration
C#
Copy
public void Add(string item)
Parameters
Type | Name | Description |
---|---|---|
string | item | The string data to insert into the resource interfaces. |
Remarks
item
could be a value, such as Default
Examples
Copy
ResourceInterfaces resourceInterfaces = new ResourceInterfaces();
resourceInterfaces.Add(ResourceInterfaces.BatchInterface);
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the iotcon is not supported. |
System. |
Thrown when the operation is invalid. |
System. |
Thrown when there is an invalid parameter. |
See Also
Declaration
C#
Copy
public void Dispose()
Dispose(bool)
Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
Declaration
C#
Copy
protected ~ResourceInterfaces()
Declaration
C#
Copy
public IEnumerator<string> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<T><string> | The enumerator. |
Examples
Copy
ResourceInterfaces resourceInterfaces = new ResourceInterfaces(new List<string>()
{ ResourceInterfaces.LinkInterface, ResourceInterfaces.ReadonlyInterface });
foreach(string item in resourceInterfaces)
{
Console.WriteLine("Interface : {0}", item);
}
Declaration
C#
Copy
public void Remove(string item)
Parameters
Type | Name | Description |
---|---|---|
string | item | The string data to delete from the resource ifaces. |
Examples
Copy
ResourceInterfaces resourceInterfaces = new ResourceInterfaces(new List<string>(){ ResourceInterfaces.BatchInterface });
resourceInterfaces.Add(ResourceInterfaces.BatchInterface);
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the iotcon is not supported. |
System. |
Thrown when there is an invalid parameter. |
System. |
Thrown when the operation is invalid. |
See Also
Explicit Interface Implementations
Declaration
C#CopyIEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System. |
The enumerator. |
Examples
Copy
ResourceInterfaces resourceInterfaces = new ResourceInterfaces(new List<string>()
{ ResourceInterfaces.LinkInterface, ResourceInterfaces.ReadonlyInterface });
foreach(string item in resourceInterfaces)
{
Console.WriteLine("Interface : {0}", item);
}