We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given this simple example:
using Buttplug.Client; using Buttplug.Client.Connectors.WebsocketConnector; namespace BugTest { public partial class Form1 : Form { ButtplugWebsocketConnector myConnector; ButtplugClient client = new ButtplugClient("Test Client"); public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { client.ConnectAsync(new ButtplugWebsocketConnector(new Uri("ws://127.0.0.1:12345"))).GetAwaiter().GetResult(); ButtplugClientDevice testDevice = client.Devices[0]; MessageBox.Show(testDevice.DisplayName); } } }
The DisplayName is null, even though the DisplayName is set in Intiface Central. Please see attached pictures.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given this simple example:
The DisplayName is null, even though the DisplayName is set in Intiface Central. Please see attached pictures.

The text was updated successfully, but these errors were encountered: