Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace CoreBluetooth
{
public class SafeNativeATTRequestHandle : SafeHandle
internal class SafeNativeATTRequestHandle : SafeHandle
{
public override bool IsInvalid => handle == IntPtr.Zero;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace CoreBluetooth
{
public class SafeNativeATTRequestsHandle : SafeHandle
internal class SafeNativeATTRequestsHandle : SafeHandle
{
public override bool IsInvalid => handle == IntPtr.Zero;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace CoreBluetooth
{
public class SafeNativePeripheralManagerHandle : SafeHandleZeroOrMinusOneIsInvalid
internal class SafeNativePeripheralManagerHandle : SafeHandleZeroOrMinusOneIsInvalid
{
SafeNativePeripheralManagerHandle() : base(true) { }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace CoreBluetooth
{
public static class StringExtensions
internal static class StringExtensions
{
private static readonly Regex CBUUIDRegex = new Regex(@"^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}|[0-9a-f]{8}|[0-9a-f]{4})$", RegexOptions.IgnoreCase);

Expand Down