1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-01-14 22:18:43 +00:00

Namespace renamed

This commit is contained in:
glucaci 2016-11-30 14:42:28 +01:00
parent 5217668ef1
commit fbf6cf3fec
10 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// The scope specifier for search commands. /// The scope specifier for search commands.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// Is thrown when a command is to be executed on a disconnected <see cref="MpcConnection"/> /// Is thrown when a command is to be executed on a disconnected <see cref="MpcConnection"/>

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Net; using System.Net;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
namespace Libmpc namespace LibMpc
{ {
public interface IMpc public interface IMpc
{ {

View File

@ -7,11 +7,11 @@ using System.Net.Sockets;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// Keeps the connection to the MPD server and handels the most basic structure of the /// Keeps the connection to the MPD server and handels the most basic structure of the
/// MPD protocol. The high level commands are handeled in the <see cref="Libmpc.Mpc"/> /// MPD protocol. The high level commands are handeled in the <see cref="Mpc"/>
/// class. /// class.
/// </summary> /// </summary>
public class MpcConnection public class MpcConnection

View File

@ -2,7 +2,7 @@
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.Collections.Generic; using System.Collections.Generic;
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// The MpdDirectoryListing class contains the response of a MPD server to a list command. /// The MpdDirectoryListing class contains the response of a MPD server to a list command.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// The MpdFile class contains all meta data for a file of the MPD. /// The MpdFile class contains all meta data for a file of the MPD.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// The MpdOutput class contains all attributes of an output device of the MPD. /// The MpdOutput class contains all attributes of an output device of the MPD.

View File

@ -4,7 +4,7 @@ using System.Collections.ObjectModel;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// The MpdResponse class parses the response to an MPD command in it's most /// The MpdResponse class parses the response to an MPD command in it's most

View File

@ -1,6 +1,6 @@
using System.Text; using System.Text;
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// The MpdStatistics class contains statistics of the MPD file database. /// The MpdStatistics class contains statistics of the MPD file database.

View File

@ -1,6 +1,6 @@
using System.Text; using System.Text;
namespace Libmpc namespace LibMpc
{ {
/// <summary> /// <summary>
/// The possible states of the MPD. /// The possible states of the MPD.