|
| 1 | +// <copyright file="NamespaceDoc.cs" company="The Android Open Source Project, Ryan Conrad, Quamotion, yungd1plomat, wherewhere"> |
| 2 | +// Copyright (c) The Android Open Source Project, Ryan Conrad, Quamotion, yungd1plomat, wherewhere. All rights reserved. |
| 3 | +// </copyright> |
| 4 | + |
| 5 | +using System.Runtime.CompilerServices; |
| 6 | + |
| 7 | +namespace AdvancedSharpAdbClient.WinRT |
| 8 | +{ |
| 9 | + /// <summary> |
| 10 | + /// |
| 11 | + /// <para> |
| 12 | + /// AdvancedSharpAdbClient is a .NET library that allows.NET applications to communicate with Android devices. |
| 13 | + /// It provides a.NET implementation of the <c>adb</c> protocol, giving more flexibility to the developer than launching an |
| 14 | + /// <c>adb.exe</c> process and parsing the console output. |
| 15 | + /// </para> |
| 16 | + /// |
| 17 | + /// <para> |
| 18 | + /// Most of the adb functionality is exposed through the <see cref="AdbClient"/> class. |
| 19 | + /// You can create your own instance of that class, or just use the instance we provide for you at |
| 20 | + /// <see cref="AdbClient.Instance"/> |
| 21 | + /// </para> |
| 22 | + /// |
| 23 | + /// <para> |
| 24 | + /// To send and receive files to and from Android devices, you can use the <see cref="SyncService"/> class. |
| 25 | + /// </para> |
| 26 | + /// |
| 27 | + /// <para> |
| 28 | + /// To be notified when Android devices connect to or disconnect from your PC, you can use the <see cref="DeviceMonitor"/> |
| 29 | + /// class. |
| 30 | + /// </para> |
| 31 | + /// |
| 32 | + /// </summary> |
| 33 | + /// |
| 34 | + /// <example> |
| 35 | + /// |
| 36 | + /// <para> |
| 37 | + /// To list all Android devices that are connected to your PC, you can use the following code: |
| 38 | + /// </para> |
| 39 | + /// |
| 40 | + /// <code> |
| 41 | + /// var devices = devices = new AdbClient().GetDevices(); |
| 42 | + /// |
| 43 | + /// foreach(var device in devices) |
| 44 | + /// { |
| 45 | + /// Console.WriteLine(device.Name); |
| 46 | + /// } |
| 47 | + /// </code> |
| 48 | + /// |
| 49 | + /// </example> |
| 50 | + /// |
| 51 | + /// <remarks> |
| 52 | + /// |
| 53 | + /// <c> |
| 54 | + /// Copyright (c) The Android Open Source Project, Ryan Conrad, Quamotion, yungd1plomat, wherewhere. All rights reserved. |
| 55 | + /// </c> |
| 56 | + /// |
| 57 | + /// </remarks> |
| 58 | + [CompilerGenerated] |
| 59 | + internal class NamespaceDoc { } |
| 60 | +} |
0 commit comments