Share via


AllJoynBusObject Constructors

Definition

Overloads

AllJoynBusObject()

Important

The types in the Windows.Devices.AllJoyn namespace are deprecated, and might not be available in future versions of Windows. AllJoyn—sponsored by AllSeen Alliance—was an open-source discovery and communication protocol for Internet of Things (IoT) scenarios such as turning lights on and off, and reading temperatures. For alternatives, such as IoTivity Lite and IoTivity, refer to the iotivity.org website.

Creates an AllJoynBusObject with the object path as the root object path. i.e. "/".

AllJoynBusObject(String)

Important

The types in the Windows.Devices.AllJoyn namespace are deprecated, and might not be available in future versions of Windows. AllJoyn—sponsored by AllSeen Alliance—was an open-source discovery and communication protocol for Internet of Things (IoT) scenarios such as turning lights on and off, and reading temperatures. For alternatives, such as IoTivity Lite and IoTivity, refer to the iotivity.org website.

Create an AllJoynBusObject that will implement one or more interfaces at the specified object path.

AllJoynBusObject(String, AllJoynBusAttachment)

Important

The types in the Windows.Devices.AllJoyn namespace are deprecated, and might not be available in future versions of Windows. AllJoyn—sponsored by AllSeen Alliance—was an open-source discovery and communication protocol for Internet of Things (IoT) scenarios such as turning lights on and off, and reading temperatures. For alternatives, such as IoTivity Lite and IoTivity, refer to the iotivity.org website.

Create an AllJoynBusObject that will implement one or more interfaces at the specified object path with the AllJoynBusAttachment specified.

AllJoynBusObject()

Important

The types in the Windows.Devices.AllJoyn namespace are deprecated, and might not be available in future versions of Windows. AllJoyn—sponsored by AllSeen Alliance—was an open-source discovery and communication protocol for Internet of Things (IoT) scenarios such as turning lights on and off, and reading temperatures. For alternatives, such as IoTivity Lite and IoTivity, refer to the iotivity.org website.

Creates an AllJoynBusObject with the object path as the root object path. i.e. "/".

public:
 AllJoynBusObject();
 AllJoynBusObject();
public AllJoynBusObject();
function AllJoynBusObject()
Public Sub New ()

Windows requirements

App capabilities
allJoyn

See also

Applies to

AllJoynBusObject(String)

Important

The types in the Windows.Devices.AllJoyn namespace are deprecated, and might not be available in future versions of Windows. AllJoyn—sponsored by AllSeen Alliance—was an open-source discovery and communication protocol for Internet of Things (IoT) scenarios such as turning lights on and off, and reading temperatures. For alternatives, such as IoTivity Lite and IoTivity, refer to the iotivity.org website.

Create an AllJoynBusObject that will implement one or more interfaces at the specified object path.

public:
 AllJoynBusObject(Platform::String ^ objectPath);
 AllJoynBusObject(winrt::hstring const& objectPath);
/// [Windows.Foundation.Metadata.Deprecated("AllJoynBusObject has been deprecated.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 786432, "Windows.Foundation.UniversalApiContract")]
 AllJoynBusObject(winrt::hstring const& objectPath);
public AllJoynBusObject(string objectPath);
[Windows.Foundation.Metadata.Deprecated("AllJoynBusObject has been deprecated.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 786432, "Windows.Foundation.UniversalApiContract")]
public AllJoynBusObject(string objectPath);
function AllJoynBusObject(objectPath)
Public Sub New (objectPath As String)

Parameters

objectPath
String

Platform::String

winrt::hstring

The object path.

Attributes

Windows requirements

App capabilities
allJoyn

See also

Applies to

AllJoynBusObject(String, AllJoynBusAttachment)

Important

The types in the Windows.Devices.AllJoyn namespace are deprecated, and might not be available in future versions of Windows. AllJoyn—sponsored by AllSeen Alliance—was an open-source discovery and communication protocol for Internet of Things (IoT) scenarios such as turning lights on and off, and reading temperatures. For alternatives, such as IoTivity Lite and IoTivity, refer to the iotivity.org website.

Create an AllJoynBusObject that will implement one or more interfaces at the specified object path with the AllJoynBusAttachment specified.

public:
 AllJoynBusObject(Platform::String ^ objectPath, AllJoynBusAttachment ^ busAttachment);
 AllJoynBusObject(winrt::hstring const& objectPath, AllJoynBusAttachment const& busAttachment);
/// [Windows.Foundation.Metadata.Deprecated("AllJoynBusObject has been deprecated.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 786432, "Windows.Foundation.UniversalApiContract")]
 AllJoynBusObject(winrt::hstring const& objectPath, AllJoynBusAttachment const& busAttachment);
public AllJoynBusObject(string objectPath, AllJoynBusAttachment busAttachment);
[Windows.Foundation.Metadata.Deprecated("AllJoynBusObject has been deprecated.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 786432, "Windows.Foundation.UniversalApiContract")]
public AllJoynBusObject(string objectPath, AllJoynBusAttachment busAttachment);
function AllJoynBusObject(objectPath, busAttachment)
Public Sub New (objectPath As String, busAttachment As AllJoynBusAttachment)

Parameters

objectPath
String

Platform::String

winrt::hstring

The object path.

busAttachment
AllJoynBusAttachment

The bus attachment instance.

Attributes

Windows requirements

App capabilities
allJoyn

See also

Applies to