Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
GetQrCodeUrlEventArgs.cs
1
using
System;
2
3
namespace
Waher.Things.Metering
4
{
8
public
class
GetQrCodeUrlEventArgs
: EventArgs
9
{
10
private
readonly
string
text;
11
private
string
url;
12
17
public
GetQrCodeUrlEventArgs
(
string
Text
)
18
{
19
this.text =
Text
;
20
this.url =
null
;
21
}
22
26
public
string
Text
=> this.text;
27
31
public
string
Url
32
{
33
get
=> this.url;
34
set
=> this.url = value;
35
}
36
}
37
}
Waher.Things.Metering.GetQrCodeUrlEventArgs
Event arguments for events that request an URL to a QR code.
Definition:
GetQrCodeUrlEventArgs.cs:9
Waher.Things.Metering.GetQrCodeUrlEventArgs.GetQrCodeUrlEventArgs
GetQrCodeUrlEventArgs(string Text)
Event arguments for events that request an URL to a QR code.
Definition:
GetQrCodeUrlEventArgs.cs:17
Waher.Things.Metering.GetQrCodeUrlEventArgs.Text
string Text
Text to encode.
Definition:
GetQrCodeUrlEventArgs.cs:26
Waher.Things.Metering.GetQrCodeUrlEventArgs.Url
string Url
QR Code URL.
Definition:
GetQrCodeUrlEventArgs.cs:32
Waher.Things.Metering
Definition:
ClearMessages.cs:11
IoTGateway
Things
Waher.Things.Metering
GetQrCodeUrlEventArgs.cs
Generated by
1.9.5