diff --git a/src/CoreBluetooth/GuidWrapper.cs b/src/CoreBluetooth/GuidWrapper.cs
index 8d65d582b6a6..6cc60f6c6399 100644
--- a/src/CoreBluetooth/GuidWrapper.cs
+++ b/src/CoreBluetooth/GuidWrapper.cs
@@ -32,10 +32,9 @@ public void ConnectPeripheral (CBPeripheral peripheral, PeripheralConnectionOpti
ConnectPeripheral (peripheral, options?.Dictionary);
}
- /// To be added.
- /// To be added.
- /// Scans for peripherals that are advertising any of the specified with the specified .
- /// To be added.
+ /// Scans for peripherals that are advertising any of the specified with the specified .
+ /// An array of advertised UUIDs to scan for.
+ /// Any custom options for the scan.
public void ScanForPeripherals (CBUUID []? peripheralUuids, NSDictionary? options)
{
if (peripheralUuids is null)
@@ -44,35 +43,31 @@ public void ScanForPeripherals (CBUUID []? peripheralUuids, NSDictionary? option
ScanForPeripherals (NSArray.FromObjects (peripheralUuids), options);
}
- /// To be added.
- /// To be added.
- /// Scans for peripherals that are advertising any of the specified with the specified .
- /// To be added.
- public void ScanForPeripherals (CBUUID [] peripheralUuids, PeripheralScanningOptions? options = null)
+ /// Scans for peripherals that are advertising any of the specified with the specified .
+ /// An array of advertised UUIDs to scan for.
+ /// Any custom options for the scan.
+ public void ScanForPeripherals (CBUUID []? peripheralUuids, PeripheralScanningOptions? options = null)
{
ScanForPeripherals (peripheralUuids, options?.Dictionary);
}
- /// To be added.
- /// Scans for peripherals that are advertising any of the specified .
- /// To be added.
- public void ScanForPeripherals (CBUUID [] peripheralUuids)
+ /// Scans for peripherals that are advertising any of the specified .
+ /// An array of advertised UUIDs to scan for.
+ public void ScanForPeripherals (CBUUID []? peripheralUuids)
{
ScanForPeripherals (peripheralUuids, null as NSDictionary);
}
- /// To be added.
- /// To be added.
- /// Scans for peripherals that are advertising the specified with the specified .
- /// To be added.
+ /// Scans for peripherals that are advertising the specified with the specified .
+ /// The advertised UUID to scan for.
+ /// Any custom options for the scan.
public void ScanForPeripherals (CBUUID serviceUuid, NSDictionary? options)
{
ScanForPeripherals (new [] { serviceUuid }, options);
}
- /// To be added.
- /// Scans for peripherals that are advertising the specified .
- /// To be added.
+ /// Scans for peripherals that are advertising the specified .
+ /// The advertised UUID to scan for.
public void ScanForPeripherals (CBUUID serviceUuid)
{
ScanForPeripherals (new [] { serviceUuid }, null as NSDictionary);