Search Results for

    Show / Hide Table of Contents

    Class ResourceTypes

    Definition

    Namespace:
    Tizen.Network.IoTConnectivity
    Assembly:
    Tizen.Network.IoTConnectivity.dll

    This class contains resource types and provides APIs to manage, add, or remove those types. A resource type indicates a class or a category of resources.

    [Obsolete("Deprecated since API level 13")]
    public class ResourceTypes : IEnumerable<string>, IEnumerable, IDisposable
    Inheritance
    object
    ResourceTypes
    Implements
    IEnumerable<string>
    IEnumerable
    IDisposable

    Constructors

    View Source

    ResourceTypes()

    Constructor of ResourceTypes.

    Declaration
    [Obsolete("Deprecated since API level 13")]
    public ResourceTypes()
    Examples
    ResourceTypes types = new ResourceTypes();
    Exceptions
    Type Condition
    NotSupportedException

    Thrown when the iotcon is not supported.

    OutOfMemoryException

    Thrown when there is not enough memory.

    See Also
    Add(string)
    Remove(string)
    View Source

    ResourceTypes(IEnumerable<string>)

    Constructor of ResourceTypes using list of types.

    Declaration
    [Obsolete("Deprecated since API level 13")]
    public ResourceTypes(IEnumerable<string> types)
    Parameters
    Type Name Description
    IEnumerable<string> types

    List of resource types.

    Examples
    ResourceTypes types = new ResourceTypes(new List<string>() { "org.tizen.light", "oic.if.room" });
    Exceptions
    Type Condition
    ArgumentException

    Thrown when there is an invalid parameter.

    Properties

    View Source

    Count

    Indicates count of types in the list.

    Declaration
    [Obsolete("Deprecated since API level 13")]
    public int Count { get; }
    Property Value
    Type Description
    int

    Count of types in the list.

    Examples
    ResourceTypes types = new ResourceTypes(new List<string>() { "org.tizen.light", "oic.if.room" });
    Console.WriteLine("There are {0} items", types.Count);

    Methods

    View Source

    Add(string)

    Adds a resource type into the list.

    Declaration
    [Obsolete("Deprecated since API level 13")]
    public void Add(string item)
    Parameters
    Type Name Description
    string item

    The string data to insert into the resource types.

    Remarks

    The length of item should be less than or equal to 61.

    The item must start with a lowercase alphabetic character, followed by a sequence of lowercase alphabetic, numeric, ".", or "-" characters, and contains no white space.

    Duplicate strings are not allowed.

    Examples
    ResourceTypes resourceTypes = new ResourceTypes();
    resourceTypes.Add("org.tizen.light");
    Exceptions
    Type Condition
    NotSupportedException

    Thrown when the iotcon is not supported.

    ArgumentException

    Thrown when there is an invalid parameter.

    InvalidOperationException

    Thrown when the operation is invalid.

    See Also
    Remove(string)
    View Source

    Dispose()

    Releases any unmanaged resources used by this object.

    Declaration
    [Obsolete("Deprecated since API level 13")]
    public void Dispose()
    View Source

    Dispose(bool)

    Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.

    Declaration
    [Obsolete("Deprecated since API level 13")]
    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.

    View Source

    ~ResourceTypes()

    Destructor of the ResourceTypes class.

    Declaration
    protected ~ResourceTypes()
    View Source

    GetEnumerator()

    Returns an enumerator for the list of types.

    Declaration
    [Obsolete("Deprecated since API level 13")]
    public IEnumerator<string> GetEnumerator()
    Returns
    Type Description
    IEnumerator<string>

    The enumerator.

    Examples
    ResourceTypes resourceTypes = new ResourceTypes(new List<string>() { "org.tizen.light", "oic.if.room" });
    foreach(string item in resourceTypes)
    {
        Console.WriteLine("Type : {0}", item);
    }
    View Source

    Remove(string)

    Removes a resource type from the list.

    Declaration
    [Obsolete("Deprecated since API level 13")]
    public void Remove(string item)
    Parameters
    Type Name Description
    string item

    The string data to delete from the resource types.

    Examples
    ResourceTypes resourceTypes = new ResourceTypes(new List<string>() { "org.tizen.light", "oic.if.room" });
    resourceTypes.Remove("oic.if.room");
    Exceptions
    Type Condition
    NotSupportedException

    Thrown when the iotcon is not supported.

    ArgumentException

    Thrown when there is an invalid parameter.

    InvalidOperationException

    Thrown when the operation is invalid.

    See Also
    Add(string)

    Implements

    IEnumerable<T>
    IEnumerable
    IDisposable
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX