Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 15 additions & 20 deletions src/CoreBluetooth/GuidWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ public void ConnectPeripheral (CBPeripheral peripheral, PeripheralConnectionOpti
ConnectPeripheral (peripheral, options?.Dictionary);
}

/// <param name="peripheralUuids">To be added.</param>
/// <param name="options">To be added.</param>
/// <summary>Scans for peripherals that are advertising any of the specified <paramref name="peripheralUuids" /> with the specified <paramref name="options" />.</summary>
/// <remarks>To be added.</remarks>
/// <summary>Scans for peripherals that are advertising any of the specified <paramref name="peripheralUuids" /> with the specified <paramref name="options" />.</summary>
/// <param name="peripheralUuids">An array of advertised UUIDs to scan for.</param>
/// <param name="options">Any custom options for the scan.</param>
public void ScanForPeripherals (CBUUID []? peripheralUuids, NSDictionary? options)
{
if (peripheralUuids is null)
Expand All @@ -44,35 +43,31 @@ public void ScanForPeripherals (CBUUID []? peripheralUuids, NSDictionary? option
ScanForPeripherals (NSArray.FromObjects (peripheralUuids), options);
}

/// <param name="peripheralUuids">To be added.</param>
/// <param name="options">To be added.</param>
/// <summary>Scans for peripherals that are advertising any of the specified <paramref name="peripheralUuids" /> with the specified <paramref name="options" />.</summary>
/// <remarks>To be added.</remarks>
public void ScanForPeripherals (CBUUID [] peripheralUuids, PeripheralScanningOptions? options = null)
/// <summary>Scans for peripherals that are advertising any of the specified <paramref name="peripheralUuids" /> with the specified <paramref name="options" />.</summary>
/// <param name="peripheralUuids">An array of advertised UUIDs to scan for.</param>
/// <param name="options">Any custom options for the scan.</param>
public void ScanForPeripherals (CBUUID []? peripheralUuids, PeripheralScanningOptions? options = null)
{
ScanForPeripherals (peripheralUuids, options?.Dictionary);
}

/// <param name="peripheralUuids">To be added.</param>
/// <summary>Scans for peripherals that are advertising any of the specified <paramref name="peripheralUuids" />.</summary>
/// <remarks>To be added.</remarks>
public void ScanForPeripherals (CBUUID [] peripheralUuids)
/// <summary>Scans for peripherals that are advertising any of the specified <paramref name="peripheralUuids" />.</summary>
/// <param name="peripheralUuids">An array of advertised UUIDs to scan for.</param>
public void ScanForPeripherals (CBUUID []? peripheralUuids)
{
ScanForPeripherals (peripheralUuids, null as NSDictionary);
}

/// <param name="serviceUuid">To be added.</param>
/// <param name="options">To be added.</param>
/// <summary>Scans for peripherals that are advertising the specified <paramref name="serviceUuid" /> with the specified <paramref name="options" />.</summary>
/// <remarks>To be added.</remarks>
/// <summary>Scans for peripherals that are advertising the specified <paramref name="serviceUuid" /> with the specified <paramref name="options" />.</summary>
/// <param name="serviceUuid">The advertised UUID to scan for.</param>
/// <param name="options">Any custom options for the scan.</param>
public void ScanForPeripherals (CBUUID serviceUuid, NSDictionary? options)
{
ScanForPeripherals (new [] { serviceUuid }, options);
}

/// <param name="serviceUuid">To be added.</param>
/// <summary>Scans for peripherals that are advertising the specified <paramref name="serviceUuid" />.</summary>
/// <remarks>To be added.</remarks>
/// <summary>Scans for peripherals that are advertising the specified <paramref name="serviceUuid" />.</summary>
/// <param name="serviceUuid">The advertised UUID to scan for.</param>
public void ScanForPeripherals (CBUUID serviceUuid)
{
ScanForPeripherals (new [] { serviceUuid }, null as NSDictionary);
Expand Down
Loading