diff --git a/Asterisk.2013/Asterisk.NET/AsterNET.csproj b/Asterisk.2013/Asterisk.NET/AsterNET.csproj index 6d84476..769645e 100644 --- a/Asterisk.2013/Asterisk.NET/AsterNET.csproj +++ b/Asterisk.2013/Asterisk.NET/AsterNET.csproj @@ -46,6 +46,8 @@ prompt 4 false + bin\Debug\AsterNET.XML + true pdbonly diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/AGIConnectionHandler.cs b/Asterisk.2013/Asterisk.NET/FastAGI/AGIConnectionHandler.cs index 2c0f2fb..543451a 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/AGIConnectionHandler.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/AGIConnectionHandler.cs @@ -28,7 +28,7 @@ namespace AsterNET.FastAGI /// /// Returns the AGIChannel associated with the current thread. /// - /// the AGIChannel associated with the current thread or null if none is associated. + /// the AGIChannel associated with the current thread or null if none is associated. internal static AGIChannel Channel { get { return (AGIChannel) Thread.GetData(_channel); } diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/AGIReply.cs b/Asterisk.2013/Asterisk.NET/FastAGI/AGIReply.cs index 72170a1..5cd3ab2 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/AGIReply.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/AGIReply.cs @@ -178,7 +178,7 @@ namespace AsterNET.FastAGI /// contains a flag like "timeout" or "hangup" or - in case of the /// GetVariableCommand - the value of the variable. /// - /// the text in the parenthesis or null if not set. + /// the text in the parenthesis or null if not set. public string Extra { get @@ -253,7 +253,7 @@ namespace AsterNET.FastAGI /// This can be retrieved by calling getAttribute("endpos") on the corresponding reply. /// /// the name of the attribute to retrieve. The name is case insensitive. - /// the value of the attribute or null if it is not set. + /// the value of the attribute or null if it is not set. public string GetAttribute(string name) { if (GetStatus() != (int) AGIReplyStatuses.SC_SUCCESS) @@ -300,7 +300,7 @@ namespace AsterNET.FastAGI /// Returns the synopsis of the command sent if Asterisk expected a different /// syntax (getStatus() == SC_INVALID_COMMAND_SYNTAX). /// - /// the synopsis of the command sent, null if there were no syntax errors. + /// the synopsis of the command sent, null if there were no syntax errors. public string GetSynopsis() { if (GetStatus() != (int) AGIReplyStatuses.SC_INVALID_COMMAND_SYNTAX) @@ -345,7 +345,7 @@ namespace AsterNET.FastAGI /// /// /// the usage of the command sent, - /// null if there were no syntax errors. + /// null if there were no syntax errors. /// public string GetUsage() { diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/AGIRequest.cs b/Asterisk.2013/Asterisk.NET/FastAGI/AGIRequest.cs index 9049514..c8d67fc 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/AGIRequest.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/AGIRequest.cs @@ -293,7 +293,7 @@ namespace AsterNET.FastAGI /// /// Returns wheather this agi is passed audio (EAGI - Enhanced AGI).
/// Enhanced AGI is currently not supported on FastAGI.
- /// true if this agi is passed audio, false otherwise. + /// true if this agi is passed audio, false otherwise. ///
public bool Enhanced { diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs b/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs index af1fe5b..dc0b38d 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs @@ -65,7 +65,7 @@ namespace AsterNET.FastAGI /// /// Plays music on hold from the given music on hold class. /// - /// the music on hold class to play music from as configures in Asterisk's . + /// the music on hold class to play music from as configures in Asterisk's . protected internal void PlayMusicOnHold(string musicOnHoldClass) { this.Channel.SendCommand(new Command.SetMusicOnCommand(musicOnHoldClass)); @@ -437,7 +437,7 @@ namespace AsterNET.FastAGI /// Returns the value of the given channel variable. /// /// the name of the variable to retrieve. - /// the value of the given variable or null if not set. + /// the value of the given variable or null if not set. protected internal string GetVariable(string name) { AGIChannel channel = this.Channel; @@ -481,7 +481,7 @@ namespace AsterNET.FastAGI /// Available since Asterisk 1.2. /// /// the name of the variable to retrieve. - /// the value of the given variable or null if not et. + /// the value of the given variable or null if not et. protected internal string GetFullVariable(string name) { AGIChannel channel = this.Channel; @@ -499,7 +499,7 @@ namespace AsterNET.FastAGI /// /// the name of the variable to retrieve. /// the name of the channel. - /// the value of the given variable or null if not set. + /// the value of the given variable or null if not set. protected internal string GetFullVariable(string name, string channelName) { AGIChannel channel = this.Channel; @@ -526,7 +526,7 @@ namespace AsterNET.FastAGI /// Available since Asterisk 1.2. /// /// the time to say in seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC) - /// the digits that allow the user to interrupt this command or null for none. + /// the digits that allow the user to interrupt this command or null for none. /// the DTMF digit pressed or 0x0 if none was pressed. protected internal char SayDateTime(long time, string escapeDigits) { @@ -540,7 +540,7 @@ namespace AsterNET.FastAGI /// Available since Asterisk 1.2. /// /// the time to say in seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC) - /// the digits that allow the user to interrupt this command or null for none. + /// the digits that allow the user to interrupt this command or null for none. /// the format the time should be said in /// the DTMF digit pressed or 0x0 if none was pressed. protected internal char SayDateTime(long time, string escapeDigits, string format) @@ -555,7 +555,7 @@ namespace AsterNET.FastAGI /// Available since Asterisk 1.2. /// /// the time to say in seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC) - /// the digits that allow the user to interrupt this command or null for none. + /// the digits that allow the user to interrupt this command or null for none. /// the format the time should be said in /// the timezone to use when saying the time, for example "UTC" or "Europe/Berlin". /// the DTMF digit pressed or 0x0 if none was pressed. @@ -573,7 +573,7 @@ namespace AsterNET.FastAGI /// /// the family of the entry to retrieve. /// key the key of the entry to retrieve. - /// the value of the given family and key or null if there is no such value. + /// the value of the given family and key or null if there is no such value. protected internal string DatabaseGet(string family, string key) { AGIChannel channel = this.Channel; @@ -682,7 +682,7 @@ namespace AsterNET.FastAGI /// contains the digits that allow the user to end recording. /// the maximum record time in milliseconds, or -1 for no timeout. /// the offset samples to skip. - /// true if a beep should be played before recording. + /// true if a beep should be played before recording. /// The amount of silence (in seconds) to allow before returning despite the lack of dtmf digits or reaching timeout. /// result code protected internal int RecordFile(string file, string format, string escapeDigits, int timeout, int offset, bool beep, int maxSilence) diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/ControlStreamFileCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/ControlStreamFileCommand.cs index fccdfcf..223316b 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/ControlStreamFileCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/ControlStreamFileCommand.cs @@ -38,7 +38,7 @@ namespace AsterNET.FastAGI.Command #endregion #region EscapeDigits /// - /// Get/Set the digits that allow the user to interrupt this command or null for none. + /// Get/Set the digits that allow the user to interrupt this command or null for none. /// public string EscapeDigits { @@ -122,7 +122,7 @@ namespace AsterNET.FastAGI.Command /// the name of the file to stream, must not include extension. /// /// contains the digits that allow the user to interrupt this command. - /// Maybe null if you don't want the user to interrupt. + /// Maybe null if you don't want the user to interrupt. /// /// the offset samples to skip before streaming. public ControlStreamFileCommand(string file, string escapeDigits, int offset) @@ -139,7 +139,7 @@ namespace AsterNET.FastAGI.Command /// support pausing. /// /// the name of the file to stream, must not include extension. - /// contains the digits that allow the user to interrupt this command. Maybe null if you don't want the user to interrupt. + /// contains the digits that allow the user to interrupt this command. Maybe null if you don't want the user to interrupt. /// the offset samples to skip before streaming. /// the digit for fast forward. /// the digit for rewind. diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/HangupCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/HangupCommand.cs index fedd3f2..97a48f6 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/HangupCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/HangupCommand.cs @@ -8,16 +8,16 @@ namespace AsterNET.FastAGI.Command { /// - /// The name of the channel to hangup or null for the current channel. + /// The name of the channel to hangup or null for the current channel. /// private string channel; /// /// Returns the name of the channel to hangup. /// - /// the name of the channel to hangup or null for the current channel. + /// the name of the channel to hangup or null for the current channel. /// Sets the name of the channel to hangup. - /// the name of the channel to hangup or null for the current channel. + /// the name of the channel to hangup or null for the current channel. public string Channel { get { return channel; } diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/RecordFileCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/RecordFileCommand.cs index 2ed1272..00ca083 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/RecordFileCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/RecordFileCommand.cs @@ -82,7 +82,7 @@ namespace AsterNET.FastAGI.Command #endregion #region Beep /// - /// Get/Set true if a beep should be played before recording. false if not. + /// Get/Set true if a beep should be played before recording. false if not. /// public bool Beep { @@ -119,7 +119,7 @@ namespace AsterNET.FastAGI.Command /// contains the digits that allow the user to end recording. /// the maximum record time in milliseconds, or -1 for no timeout. /// the offset samples to skip. - /// true if a beep should be played before recording. + /// true if a beep should be played before recording. /// The amount of silence (in seconds) to allow before returning despite the lack of dtmf digits or reaching timeout. public RecordFileCommand(string file, string format, string escapeDigits, int timeout, int offset, bool beep, int maxSilence) { diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/SayDateTimeCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/SayDateTimeCommand.cs index e9a3a00..b2ca0c2 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/SayDateTimeCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/SayDateTimeCommand.cs @@ -29,7 +29,7 @@ namespace AsterNET.FastAGI.Command /// Creates a new SayDateTimeCommand that says the given time and allows interruption by one of the given escape digits. /// /// the time to say in seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC) - /// the digits that allow the user to interrupt this command or null for none. + /// the digits that allow the user to interrupt this command or null for none. public SayDateTimeCommand(long time, string escapeDigits) { this.time = time; @@ -41,7 +41,7 @@ namespace AsterNET.FastAGI.Command /// format and allows interruption by one of the given escape digits. /// /// the time to say in seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC) - /// the digits that allow the user to interrupt this command or null for none. + /// the digits that allow the user to interrupt this command or null for none. /// the format the time should be said in public SayDateTimeCommand(long time, string escapeDigits, string format) { @@ -56,7 +56,7 @@ namespace AsterNET.FastAGI.Command /// digits. /// /// the time to say in seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC) - /// the digits that allow the user to interrupt this command or null for none. + /// the digits that allow the user to interrupt this command or null for none. /// the format the time should be said in /// the timezone to use when saying the time, for example "UTC" or "Europe/Berlin". public SayDateTimeCommand(long time, string escapeDigits, string format, string timezone) diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/SetMusicOnCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/SetMusicOnCommand.cs index 0ee2d1d..44433a3 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/SetMusicOnCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/SetMusicOnCommand.cs @@ -10,8 +10,8 @@ namespace AsterNET.FastAGI.Command /// /// Get/Set the music on hold class to play music from. /// - /// the music on hold class to play music from or null for the default class. - /// the music on hold class to play music from or null for the default class. + /// the music on hold class to play music from or null for the default class. + /// the music on hold class to play music from or null for the default class. public string MusicOnHoldClass { get { return musicOnHoldClass; } diff --git a/Asterisk.2013/Asterisk.NET/FastAGI/Command/StreamFileCommand.cs b/Asterisk.2013/Asterisk.NET/FastAGI/Command/StreamFileCommand.cs index 7e1d6b9..e22b590 100644 --- a/Asterisk.2013/Asterisk.NET/FastAGI/Command/StreamFileCommand.cs +++ b/Asterisk.2013/Asterisk.NET/FastAGI/Command/StreamFileCommand.cs @@ -104,7 +104,7 @@ namespace AsterNET.FastAGI.Command /// /// the name of the file to stream, must not include extension. /// contains the digits that allow the user to interrupt this command. - /// Maybe null if you don't want the user to interrupt. + /// Maybe null if you don't want the user to interrupt. /// /// the offset samples to skip before streaming. public StreamFileCommand(string file, string escapeDigits, int offset) diff --git a/Asterisk.2013/Asterisk.NET/Helper.cs b/Asterisk.2013/Asterisk.NET/Helper.cs index 2b903a5..4eaf4aa 100644 --- a/Asterisk.2013/Asterisk.NET/Helper.cs +++ b/Asterisk.2013/Asterisk.NET/Helper.cs @@ -93,13 +93,13 @@ namespace AsterNET #region IsTrue(string) /// - /// Checks if a String represents true or false according to Asterisk's logic.
- /// The original implementation is util.c is as follows: + /// Checks if a String represents true or false according to Asterisk's logic.
+ /// The original implementation is util.c is as follows: ///
- /// the String to check for true. + /// the String to check for true. /// - /// true if s represents true, - /// false otherwise. + /// true if s represents true, + /// false otherwise. /// internal static bool IsTrue(string s) { @@ -744,7 +744,7 @@ namespace AsterNET /// /// source attribute for the event /// map containing event attributes - /// a concrete instance of ManagerEvent or null if no event class was registered for the event type. + /// a concrete instance of ManagerEvent or null if no event class was registered for the event type. internal static ManagerEvent BuildEvent(IDictionary list, ManagerConnection source, Dictionary attributes) { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/AgentCallbackLoginAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/AgentCallbackLoginAction.cs index 50cf437..1f92773 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/AgentCallbackLoginAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/AgentCallbackLoginAction.cs @@ -70,7 +70,7 @@ namespace AsterNET.Manager.Action /// /// Get/Set if an acknowledgement is needed when agent is called back.
- /// true if acknowledgement by '#' is required when agent is called back, false otherwise. + /// true if acknowledgement by '#' is required when agent is called back, false otherwise. /// This property is optional, it allows you to override the defaults defined in Asterisk's configuration. ///
public bool AckCall { get; set; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/AgentLogoffAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/AgentLogoffAction.cs index 909ecf0..d58c041 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/AgentLogoffAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/AgentLogoffAction.cs @@ -41,7 +41,7 @@ namespace AsterNET.Manager.Action /// /// /// true if existing calls should not be hung up, false otherwise.
- /// null if default should be used. + /// null if default should be used. ///
public bool Soft { get; set; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/ChangeMonitorAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/ChangeMonitorAction.cs index a21290c..0a34bda 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/ChangeMonitorAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/ChangeMonitorAction.cs @@ -3,7 +3,7 @@ namespace AsterNET.Manager.Action /// /// The ChangeMonitorAction changes the monitoring filename of a channel. /// It has no effect if the channel is not monitored.
- /// It is implemented in res/res_monitor.c + /// It is implemented in res/res_monitor.c ///
public class ChangeMonitorAction : ManagerAction { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/CommandAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/CommandAction.cs index b56c5a7..ad6c33d 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/CommandAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/CommandAction.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Action { /// /// The CommandAction sends a command line interface (CLI) command to the asterisk server.
- /// For a list of supported commands type help on asterisk's command line. + /// For a list of supported commands type help on asterisk's command line. ///
public class CommandAction : ManagerAction { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/LoginAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/LoginAction.cs index d759488..51d64bb 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/LoginAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/LoginAction.cs @@ -23,8 +23,8 @@ namespace AsterNET.Manager.Action /// Creates a new LoginAction that performs a cleartext login.
/// You should not use cleartext login if you are concerned about security and login with a password hash instead. /// - /// the username as configured in Asterisk's manager.conf - /// the user's password as configured in Asterisk's manager.conf + /// the username as configured in Asterisk's manager.conf + /// the user's password as configured in Asterisk's manager.conf /// public LoginAction(string username, string secret) { @@ -35,7 +35,7 @@ namespace AsterNET.Manager.Action /// /// Creates a new LoginAction that performs a login via challenge/response. /// - /// the username as configured in Asterisk's manager.conf + /// the username as configured in Asterisk's manager.conf /// /// the digest alogrithm, must match the digest algorithm that was used with the corresponding /// ChallengeAction. @@ -51,7 +51,7 @@ namespace AsterNET.Manager.Action /// /// Creates a new LoginAction that performs a login via challenge/response. /// - /// the username as configured in Asterisk's manager.conf + /// the username as configured in Asterisk's manager.conf /// /// the digest alogrithm, must match the digest algorithm that was used with the corresponding /// ChallengeAction. @@ -79,13 +79,13 @@ namespace AsterNET.Manager.Action } /// - /// Get/Set the username as configured in asterik's manager.conf. + /// Get/Set the username as configured in asterik's manager.conf. /// public string Username { get; set; } /// /// Get/Set the secret to use when using cleartext login.
- /// The secret contains the user's password as configured in Asterisk's manager.conf.
+ /// The secret contains the user's password as configured in Asterisk's manager.conf.
/// The secret and key properties are mutually exclusive. ///
public string Secret { get; set; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/MonitorAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/MonitorAction.cs index 62d1369..9394b80 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/MonitorAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/MonitorAction.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Action { /// /// The MonitorAction starts monitoring (recording) a channel.
- /// It is implemented in res/res_monitor.c + /// It is implemented in res/res_monitor.c ///
public class MonitorAction : ManagerAction { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/OriginateAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/OriginateAction.cs index 0873068..2cc9595 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/OriginateAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/OriginateAction.cs @@ -16,7 +16,7 @@ namespace AsterNET.Manager.Action /// The response to this action is sent when the channel has been answered and /// asterisk starts connecting it to the given extension. So be careful not to /// choose a too short timeout when waiting for the response.
- /// If you set async to true Asterisk reports an OriginateSuccess- + /// If you set async to true Asterisk reports an OriginateSuccess- /// and OriginateFailureEvents. The action id of these events equals the action /// id of this OriginateAction. /// @@ -120,7 +120,7 @@ namespace AsterNET.Manager.Action #region Async /// - /// Get/Set true if this is a fast origination.
+ /// Get/Set true if this is a fast origination.
/// For the origination to be asynchronous (allows multiple calls to be generated without waiting for a response). ///
/// Will send OriginateSuccess- and OriginateFailureEvents. diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/QueueAddAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/QueueAddAction.cs index 0665241..c1f2205 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/QueueAddAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/QueueAddAction.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Action { /// /// The QueueAddAction adds a new member to a queue.
- /// It is implemented in apps/app_queue.c + /// It is implemented in apps/app_queue.c ///
public class QueueAddAction : ManagerAction { @@ -91,7 +91,7 @@ namespace AsterNET.Manager.Action /// /// Get/Set if the queue member should be paused when added.
- /// true if the queue member should be paused when added. + /// true if the queue member should be paused when added. ///
public bool Paused { get; set; } } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/QueuePauseAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/QueuePauseAction.cs index 706fab6..4ad6cf9 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/QueuePauseAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/QueuePauseAction.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Action { /// /// The QueuePauseAction makes a queue member temporarily unavailabe (or available again).
- /// It is implemented in apps/app_queue.c
+ /// It is implemented in apps/app_queue.c
/// Available since Asterisk 1.2. ///
public class QueuePauseAction : ManagerAction @@ -43,7 +43,7 @@ namespace AsterNET.Manager.Action /// interface available or unavailable on all queues. ///
/// the interface of the member to make unavailable - /// true to make the member unavailbale, false to make the member available + /// true to make the member unavailbale, false to make the member available public QueuePauseAction(string iface, bool paused) { this.Interface = iface; @@ -56,7 +56,7 @@ namespace AsterNET.Manager.Action /// /// the interface of the member to make unavailable /// the queue the member is made unvailable on - /// true to make the member unavailbale, false to make the member available + /// true to make the member unavailbale, false to make the member available public QueuePauseAction(string iface, string queue, bool paused) { this.Interface = iface; @@ -85,8 +85,8 @@ namespace AsterNET.Manager.Action /// /// Get/Set if the member is made available or unavailable.
- /// true to make the member unavailbale,
- /// false make the member available + /// true to make the member unavailbale,
+ /// false make the member available ///
public bool Paused { get; set; } } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/QueueRemoveAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/QueueRemoveAction.cs index 93a5f2f..0502809 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/QueueRemoveAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/QueueRemoveAction.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Action { /// /// The QueueRemoveAction removes a member from a queue.
- /// It is implemented in apps/app_queue.c + /// It is implemented in apps/app_queue.c ///
public class QueueRemoveAction : ManagerAction { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/QueueStatusAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/QueueStatusAction.cs index 4e77ab2..ddb0ec7 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/QueueStatusAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/QueueStatusAction.cs @@ -9,7 +9,7 @@ namespace AsterNET.Manager.Action /// QueueMemberEvent for each member of that queue and a QueueEntryEvent for each /// entry in the queue.
/// Since Asterisk 1.2 a QueueStatusCompleteEvent is sent to denote the end of the generated dump.
- /// This action is implemented in apps/app_queue.c + /// This action is implemented in apps/app_queue.c /// /// /// diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/SetCDRUserFieldAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/SetCDRUserFieldAction.cs index baa5514..54ee464 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/SetCDRUserFieldAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/SetCDRUserFieldAction.cs @@ -4,7 +4,7 @@ namespace AsterNET.Manager.Action /// The SetCDRUserFieldAction causes the user field of the call detail record for the given channel to be changed. ///
/// Depending on the value of the append property the value is appended or overwritten.
- /// The SetCDRUserFieldAction is implemented in apps/app_setcdruserfield.c + /// The SetCDRUserFieldAction is implemented in apps/app_setcdruserfield.c /// public class SetCDRUserFieldAction : ManagerAction { @@ -63,7 +63,7 @@ namespace AsterNET.Manager.Action /// /// Get/Set if the value of the cdr user field is appended or overwritten.
- /// true to append the value to the cdr user field or false to overwrite. + /// true to append the value to the cdr user field or false to overwrite. ///
public bool Append { get; set; } } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/StopMonitorAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/StopMonitorAction.cs index 3f581a2..56fc56e 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/StopMonitorAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/StopMonitorAction.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Action { /// /// The StopMonitorAction ends monitoring (recording) a channel.
- /// It is implemented in res/res_monitor.c + /// It is implemented in res/res_monitor.c ///
public class StopMonitorAction : ManagerAction { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLoginEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLoginEvent.cs index 67d6879..6d58523 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLoginEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLoginEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// An AgentCallbackLoginEvent is triggered when an agent is successfully logged in using AgentCallbackLogin.
- /// It is implemented in channels/chan_agent.c + /// It is implemented in channels/chan_agent.c ///
/// public class AgentCallbackLoginEvent : ManagerEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLogoffEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLogoffEvent.cs index a2eb014..1e7dfff 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLogoffEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCallbackLogoffEvent.cs @@ -3,7 +3,7 @@ namespace AsterNET.Manager.Event /// /// An AgentCallbackLogoffEvent is triggered when an agent that previously logged in using /// AgentCallbackLogin is logged of.
- /// It is implemented in channels/chan_agent.c + /// It is implemented in channels/chan_agent.c ///
/// public class AgentCallbackLogoffEvent : ManagerEvent @@ -33,7 +33,7 @@ namespace AsterNET.Manager.Event /// /// Returns the reason for the logoff. The reason is set to Autologoff if the agent has been /// logged off due to not answering the phone in time. Autologoff is configured by setting - /// autologoff to the appropriate number of seconds in agents.conf. + /// autologoff to the appropriate number of seconds in agents.conf. /// /// Sets the reason for the logoff. public string Reason { get; set; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCalledEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCalledEvent.cs index 6cfe250..a214b92 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCalledEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentCalledEvent.cs @@ -2,8 +2,8 @@ namespace AsterNET.Manager.Event { /// /// An AgentCalledEvent is triggered when an agent is rung.
- /// To enable AgentCalledEvents you have to set eventwhencalled = yes in queues.conf.
- /// This event is implemented in apps/app_queue.c + /// To enable AgentCalledEvents you have to set eventwhencalled = yes in queues.conf.
+ /// This event is implemented in apps/app_queue.c ///
public class AgentCalledEvent : AbstractAgentVariables { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLoginEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLoginEvent.cs index 0ccd917..e70652f 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLoginEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLoginEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin.
- /// It is implemented in channels/chan_agent.c + /// It is implemented in channels/chan_agent.c ///
/// public class AgentLoginEvent : ManagerEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLogoffEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLogoffEvent.cs index 923153e..68c287a 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLogoffEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AgentLogoffEvent.cs @@ -2,8 +2,7 @@ namespace AsterNET.Manager.Event { /// /// An AgentCallbackLogoffEvent is triggered when an agent that previously logged in using AgentLogin is logged of. - ///
- /// It is implemented in channels/chan_agent.c + /// It is implemented in channels/chan_agent.c ///
/// public class AgentLogoffEvent : ManagerEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmClearEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmClearEvent.cs index ac1b10f..a7cbc8a 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmClearEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmClearEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// An AlarmEvent is triggered when a Zap channel leaves alarm state.
- /// It is implemented in channels/chan_zap.c + /// It is implemented in channels/chan_zap.c ///
public class AlarmClearEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmEvent.cs index f6c8b23..466159e 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// An AlarmEvent is triggered when a Zap channel enters or changes alarm state.
- /// It is implemented in channels/chan_zap.c + /// It is implemented in channels/chan_zap.c ///
public class AlarmEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/CdrEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/CdrEvent.cs index 18c3c8e..a497613 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/CdrEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/CdrEvent.cs @@ -2,9 +2,9 @@ namespace AsterNET.Manager.Event { /// /// A CdrEvent is triggered when a call detail record is generated, usually at the end of a call.
- /// To enable CdrEvents you have to add enabled = yes to the general section in - /// cdr_manager.conf.
- /// This event is implemented in cdr/cdr_manager.c + /// To enable CdrEvents you have to add enabled = yes to the general section in + /// cdr_manager.conf.
+ /// This event is implemented in cdr/cdr_manager.c ///
public class CdrEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/DNDStateEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/DNDStateEvent.cs index a038567..0069edd 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/DNDStateEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/DNDStateEvent.cs @@ -3,7 +3,7 @@ namespace AsterNET.Manager.Event /// /// A DNDStateEvent is triggered by the Zap channel driver when a channel enters /// or leaves DND (do not disturb) state.
- /// It is implemented in channels/chan_zap.c.
+ /// It is implemented in channels/chan_zap.c.
/// Available since Asterisk 1.2 ///
public class DNDStateEvent : ManagerEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/DialEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/DialEvent.cs index 3b41349..bbae348 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/DialEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/DialEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A dial event is triggered whenever a phone attempts to dial someone.
- /// This event is implemented in apps/app_dial.c.
+ /// This event is implemented in apps/app_dial.c.
/// Available since Asterisk 1.2. ///
public class DialEvent : ManagerEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ExtensionStatusEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ExtensionStatusEvent.cs index 767beee..e05baf8 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ExtensionStatusEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ExtensionStatusEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// An ExtensionStatusEvent is triggered when the state of an extension changes.
- /// It is implemented in manager.c + /// It is implemented in manager.c ///
public class ExtensionStatusEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/FaxReceivedEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/FaxReceivedEvent.cs index 73665b2..7f9b299 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/FaxReceivedEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/FaxReceivedEvent.cs @@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event /// A FaxReceivedEvent is triggered by spandsp after a new fax has been received.
/// It is only available if you installed the spandsp patches to Asterisk.
/// See http://soft-switch.org/installing-spandsp.html for details.
- /// Implemented in apps/app_rxfax.c. + /// Implemented in apps/app_rxfax.c. /// public class FaxReceivedEvent : AbstractAgentEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/HangupEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/HangupEvent.cs index b4a52b4..cdaf9d6 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/HangupEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/HangupEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A HangupEvent is triggered when a channel is hung up.
- /// It is implemented in channel.c + /// It is implemented in channel.c ///
public class HangupEvent : AbstractChannelEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs index f02d4aa..1aeeb59 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A HoldEvent is triggered by the SIP channel driver when a channel is put on hold.
- /// It is implemented in channels/chan_sip.c.
+ /// It is implemented in channels/chan_sip.c.
/// Available since Asterisk 1.2 ///
/// diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/HoldedCallEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/HoldedCallEvent.cs index 90e4018..6ec4385 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/HoldedCallEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/HoldedCallEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A HoldedCallEvent is triggered when a channel is put on hold.
- /// It is implemented in res/res_features.c + /// It is implemented in res/res_features.c ///
public class HoldedCallEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/JoinEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/JoinEvent.cs index 56a30d7..b1b22f1 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/JoinEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/JoinEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A JoinEvent is triggered when a channel joines a queue.
- /// It is implemented in apps/app_queue.c + /// It is implemented in apps/app_queue.c ///
public class JoinEvent : QueueEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/LeaveEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/LeaveEvent.cs index ed05264..51920b4 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/LeaveEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/LeaveEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A LeaveEvent is triggered when a channel leaves a queue.
- /// It is implemented in apps/app_queue.c + /// It is implemented in apps/app_queue.c ///
public class LeaveEvent : QueueEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/LogChannelEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/LogChannelEvent.cs index a93db8a..b593f8a 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/LogChannelEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/LogChannelEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A LogChannelEvent is triggered when logging is turned on or off.
- /// It is implemented in logger.c
+ /// It is implemented in logger.c
///
public class LogChannelEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ManagerEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ManagerEvent.cs index d042263..1f298eb 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ManagerEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ManagerEvent.cs @@ -79,7 +79,7 @@ namespace AsterNET.Manager.Event /// /// Get/Set the point in time this event was received from the Asterisk server.
/// Pseudo events that are not directly received from the asterisk server - /// (for example ConnectEvent and DisconnectEvent) may return null. + /// (for example ConnectEvent and DisconnectEvent) may return null. ///
public DateTime DateReceived { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeJoinEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeJoinEvent.cs index 7f51f5a..a48c062 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeJoinEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeJoinEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A MeetMeJoinEvent is triggered if a channel joins a meet me conference.
- /// It is implemented in apps/app_meetme.c + /// It is implemented in apps/app_meetme.c ///
public class MeetmeJoinEvent : AbstractMeetmeEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeLeaveEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeLeaveEvent.cs index 3fea20e..1d595bc 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeLeaveEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeLeaveEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A MeetMeLeaveEvent is triggered if a channel leaves a meet me conference.
- /// It is implemented in apps/app_meetme.c + /// It is implemented in apps/app_meetme.c ///
public class MeetmeLeaveEvent : AbstractMeetmeEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeStopTalkingEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeStopTalkingEvent.cs index ec425e3..8a70544 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeStopTalkingEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeStopTalkingEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A MeetMeStopTalkingEvent is triggered when a user ends talking in a meet me conference.
- /// It is implemented in apps/app_meetme.c + /// It is implemented in apps/app_meetme.c ///
public class MeetmeStopTalkingEvent : AbstractMeetmeEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/MessageWaitingEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/MessageWaitingEvent.cs index 54cea69..6ab9abc 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/MessageWaitingEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/MessageWaitingEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A MessageWaitingEvent is triggered when someone leaves voicemail.
- /// It is implemented in apps/app_voicemail.c + /// It is implemented in apps/app_voicemail.c ///
public class MessageWaitingEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/NewCallerIdEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/NewCallerIdEvent.cs index 68fd025..b2a99f1 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/NewCallerIdEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/NewCallerIdEvent.cs @@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event { /// /// A NewCallerIdEvent is triggered when the caller id of a channel changes.
- /// It is implemented in channel.c + /// It is implemented in channel.c ///
public class NewCallerIdEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/NewChannelEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/NewChannelEvent.cs index f112800..954c631 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/NewChannelEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/NewChannelEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A NewChannelEvent is triggered when a new channel is created.
- /// It is implemented in channel.c + /// It is implemented in channel.c ///
public class NewChannelEvent : AbstractChannelEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/NewExtenEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/NewExtenEvent.cs index 39f4ef9..a3be083 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/NewExtenEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/NewExtenEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A NewExtenEvent is triggered when a channel is connected to a new extension.
- /// It is implemented in pbx.c + /// It is implemented in pbx.c ///
public class NewExtenEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/NewStateEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/NewStateEvent.cs index c65c4cd..8bb4d8c 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/NewStateEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/NewStateEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A NewStateEvent is triggered when the state of a channel has changed.
- /// It is implemented in channel.c + /// It is implemented in channel.c ///
public class NewStateEvent : AbstractChannelEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallEvent.cs index fbd02a7..d9d601f 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallEvent.cs @@ -3,7 +3,7 @@ namespace AsterNET.Manager.Event /// /// A ParkedCallEvent is triggered when a channel is parked (in this case no /// action id is set) and in response to a ParkedCallsAction.
- /// It is implemented in res/res_features.c + /// It is implemented in res/res_features.c ///
/// public class ParkedCallEvent : ResponseEvent @@ -29,8 +29,8 @@ namespace AsterNET.Manager.Event } /// /// Get/Set the number of seconds this call will be parked.
- /// This corresponds to the parkingtime option in - /// features.conf. + /// This corresponds to the parkingtime option in + /// features.conf. ///
public long Timeout { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs index 99f9e18..2ada4c6 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A ParkedCallGiveUpEvent is triggered when a channel that has been parked is hung up.
- /// It is implemented in res/res_features.c
+ /// It is implemented in res/res_features.c
/// Available since Asterisk 1.2 ///
public class ParkedCallGiveUpEvent : AbstractParkedCallEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallTimeOutEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallTimeOutEvent.cs index 49f5a5b..7daba2a 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallTimeOutEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallTimeOutEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A ParkedCallTimeOutEvent is triggered when call parking times out for a given channel.
- /// It is implemented in res/res_features.c
+ /// It is implemented in res/res_features.c
/// Available since Asterisk 1.2 ///
public class ParkedCallTimeOutEvent : AbstractParkedCallEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/PeerEntryEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/PeerEntryEvent.cs index 21c8ff6..c65e4a1 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/PeerEntryEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/PeerEntryEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A PeerEntryEvent is triggered in response to a SIPPeersAction or SIPShowPeerAction and contains information about a peer.
- /// It is implemented in channels/chan_sip.c + /// It is implemented in channels/chan_sip.c ///
public class PeerEntryEvent : ResponseEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/PeerStatusEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/PeerStatusEvent.cs index 8c70b1b..6d2b551 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/PeerStatusEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/PeerStatusEvent.cs @@ -3,7 +3,7 @@ namespace AsterNET.Manager.Event /// /// A PeerStatusEvent is triggered when a SIP or IAX client attempts to registrer at this asterisk server.
- /// This event is implemented in channels/chan_iax2.c and channels/chan_sip.c + /// This event is implemented in channels/chan_iax2.c and channels/chan_sip.c ///
public class PeerStatusEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueEntryEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueEntryEvent.cs index 00a3081..2fbd6cb 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueEntryEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueEntryEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue.
- /// It is implemented in apps/app_queue.c + /// It is implemented in apps/app_queue.c ///
/// public class QueueEntryEvent : ResponseEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberAddedEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberAddedEvent.cs index bf7d91e..ff64233 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberAddedEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberAddedEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A QueueMemberAddedEvent is triggered when a queue member is added to a queue.
- /// It is implemented in apps/app_queue.c.
+ /// It is implemented in apps/app_queue.c.
/// Available since Asterisk 1.2 ///
public class QueueMemberAddedEvent : AbstractQueueMemberEvent @@ -85,7 +85,7 @@ namespace AsterNET.Manager.Event } /// /// Get/Set value if this queue member is paused (not accepting calls).
- /// true if this member has been paused or false if not. + /// true if this member has been paused or false if not. ///
public bool Paused { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberEvent.cs index 9c66d97..ca73a15 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue.
- /// It is implemented in apps/app_queue.c + /// It is implemented in apps/app_queue.c ///
/// public class QueueMemberEvent : ResponseEvent @@ -56,7 +56,7 @@ namespace AsterNET.Manager.Event /// /// Get/Set value if this member has been dynamically added by the QueueAdd command /// (in the dialplan or via the Manager API) or if this member is has been - /// statically defined in queues.conf. + /// statically defined in queues.conf. /// "dynamic" if the added member is a dynamic queue member, "static" if the added member is a static queue member. /// public string Membership @@ -115,8 +115,8 @@ namespace AsterNET.Manager.Event /// /// Is this queue member paused (not accepting calls)?
/// Available since Asterisk 1.2.
- /// true if this member has been paused, - /// false if not + /// true if this member has been paused, + /// false if not public bool Paused { get { return this.paused; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberPausedEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberPausedEvent.cs index eeefd5f..c26f412 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberPausedEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberPausedEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused.
- /// It is implemented in apps/app_queue.c.
+ /// It is implemented in apps/app_queue.c.
/// Available since Asterisk 1.2 ///
public class QueueMemberPausedEvent : AbstractQueueMemberEvent @@ -23,8 +23,8 @@ namespace AsterNET.Manager.Event /// /// Get/Set if this queue member is paused (not accepting calls).
- /// true if this member has been paused or - /// false if not. + /// true if this member has been paused or + /// false if not. ///
public bool Paused { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberRemovedEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberRemovedEvent.cs index dafcff6..57fb9b9 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberRemovedEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueMemberRemovedEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue.
- /// It is implemented in apps/app_queue.c.
+ /// It is implemented in apps/app_queue.c.
/// Available since Asterisk 1.2 ///
public class QueueMemberRemovedEvent : AbstractQueueMemberEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueParamsEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueParamsEvent.cs index 94d179e..0d52ed2 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueParamsEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueParamsEvent.cs @@ -3,7 +3,7 @@ namespace AsterNET.Manager.Event { /// /// A QueueParamsEvent is triggered in response to a QueueStatusAction and contains the parameters of a queue.
- /// It is implemented in apps/app_queue.c + /// It is implemented in apps/app_queue.c ///
/// public class QueueParamsEvent : ResponseEvent @@ -36,7 +36,7 @@ namespace AsterNET.Manager.Event set { this.queue = value; } } /// Returns the maximum number of people waiting in the queue or 0 for unlimited.
- /// This corresponds to the maxlen setting in queues.conf. + /// This corresponds to the maxlen setting in queues.conf. ///
/// Sets the maximum number of people waiting in the queue. public int Max @@ -72,8 +72,8 @@ namespace AsterNET.Manager.Event get { return abandoned; } set { this.abandoned = value; } } - /// Returns the service level (in seconds) as defined by the servicelevel setting - /// in queues.conf. + /// Returns the service level (in seconds) as defined by the servicelevel setting + /// in queues.conf. /// /// Sets the service level. public int ServiceLevel diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/RegistryEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/RegistryEvent.cs index fdc0ddd..1bdb036 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/RegistryEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/RegistryEvent.cs @@ -3,8 +3,8 @@ namespace AsterNET.Manager.Event /// /// A RegistryEvent is triggered when this asterisk server attempts to register /// as a client at another SIP or IAX server.
- /// This event is implemented in channels/chan_iax2.c and - /// channels/chan_sip.c + /// This event is implemented in channels/chan_iax2.c and + /// channels/chan_sip.c ///
public class RegistryEvent : ManagerEvent { @@ -26,8 +26,8 @@ namespace AsterNET.Manager.Event } /// /// Get/Set the domain or host name of the SIP or IAX2 server.
- /// This is the host part used in the register lines in - /// iax.conf and sip.conf. + /// This is the host part used in the register lines in + /// iax.conf and sip.conf. ///
public string Domain { @@ -37,7 +37,7 @@ namespace AsterNET.Manager.Event /// /// Get/Set the username used for registration.
/// SIP send the username in case of a registration timeout, IAX2 in case of - /// a registration failure. Otherwise the username is null. + /// a registration failure. Otherwise the username is null. ///
public string Username { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ReloadEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ReloadEvent.cs index 7622035..2f0d267 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ReloadEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ReloadEvent.cs @@ -1,8 +1,8 @@ namespace AsterNET.Manager.Event { /// - /// A ReloadEvent is triggerd when the reload console command is executed or the asterisk server is started.
- /// It is implemented in manager.c + /// A ReloadEvent is triggerd when the reload console command is executed or the asterisk server is started.
+ /// It is implemented in manager.c ///
public class ReloadEvent : ConnectionStateEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/RenameEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/RenameEvent.cs index 5bff4b7..91536f3 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/RenameEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/RenameEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A RenameEvent is triggered when the name of a channel is changed.
- /// It is implemented in channel.c + /// It is implemented in channel.c ///
public class RenameEvent : ManagerEvent { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ShutdownEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ShutdownEvent.cs index be5e777..2cc2ece 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ShutdownEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ShutdownEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A ShutdownEvent is triggered when the asterisk server is shut down or restarted.
- /// It is implemented in asterisk.c + /// It is implemented in asterisk.c ///
public class ShutdownEvent : ConnectionStateEvent { @@ -23,7 +23,7 @@ namespace AsterNET.Manager.Event set { this.shutdown = value; } } /// - /// Get/Set true if the server has been restarted; false if it has been halted. + /// Get/Set true if the server has been restarted; false if it has been halted. /// public bool Restart { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs index efb0dfe..273a3c9 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold.
- /// It is implemented in channels/chan_sip.c.
+ /// It is implemented in channels/chan_sip.c.
/// Available since Asterisk 1.2 ///
/// diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/UnparkedCallEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/UnparkedCallEvent.cs index cee8018..8e83706 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/UnparkedCallEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/UnparkedCallEvent.cs @@ -2,7 +2,7 @@ namespace AsterNET.Manager.Event { /// /// A UnparkedCallEvent is triggered when a channel that has been parked is resumed.
- /// It is implemented in res/res_features.c
+ /// It is implemented in res/res_features.c
/// Available since Asterisk 1.2 ///
public class UnparkedCallEvent : AbstractParkedCallEvent diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs index a61ea54..6fc4c1c 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs @@ -10,7 +10,7 @@ namespace AsterNET.Manager.Event /// A user event by default has the attributes channel and uniqueId but you can add custom /// attributes by specifying an event body.
/// To add your own user events you must subclass this class and name it corresponding to your event.
- /// If you plan to send an event by UserEvent(VIPCall) you will create a new class + /// If you plan to send an event by UserEvent(VIPCall) you will create a new class /// called VIPCallEvent that extends UserEvent. The name of this class is important: Just use the /// name of the event you will send (VIPCall in this example) and append "Event".
/// To pass additional data create appropriate attributes with getter and setter methods in your new class.
@@ -31,8 +31,8 @@ namespace AsterNET.Manager.Event /// } /// } /// - /// To send this event use UserEvent(VIPCall|firstName: Jon) in your dialplan.
- /// The UserEvent is implemented in apps/app_userevent.c.
+ /// To send this event use UserEvent(VIPCall|firstName: Jon) in your dialplan.
+ /// The UserEvent is implemented in apps/app_userevent.c.
/// Note that you must register your UserEvent with the ManagerConnection you are using in order to be recognized. ///
/// diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsEvent.cs index 23b7582..5149bf7 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsEvent.cs @@ -45,7 +45,7 @@ namespace AsterNET.Manager.Event set { this.signalling = value; } } /// - /// Get/Set the context of this zap channel as defined in zapata.conf. + /// Get/Set the context of this zap channel as defined in zapata.conf. /// public string Context { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Exceptions/EventTimeoutException.cs b/Asterisk.2013/Asterisk.NET/Manager/Exceptions/EventTimeoutException.cs index dabb3f9..d2eabc8 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Exceptions/EventTimeoutException.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Exceptions/EventTimeoutException.cs @@ -18,7 +18,7 @@ namespace AsterNET.Manager /// /// the ResponseEvents object filled with the parts that have been /// received before the timeout occured. Note: The response attribute - /// may be null when no response has been received. + /// may be null when no response has been received. /// public ResponseEvents PartialResult { diff --git a/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs b/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs index eadce56..487a9d7 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs @@ -174,7 +174,7 @@ namespace AsterNET.Manager public event AgentCallbackLogoffEventHandler AgentCallbackLogoff; /// /// An AgentCalled is triggered when an agent is ring.
- /// To enable AgentCalled you have to set eventwhencalled = yes in queues.conf.
+ /// To enable AgentCalled you have to set eventwhencalled = yes in queues.conf.
///
public event AgentCalledEventHandler AgentCalled; /// @@ -1190,7 +1190,7 @@ namespace AsterNET.Manager #region Hostname /// Sets the hostname of the asterisk server to connect to.
- /// Default is localhost. + /// Default is localhost. ///
public string Hostname { @@ -1202,7 +1202,7 @@ namespace AsterNET.Manager #region Port /// /// Sets the port to use to connect to the asterisk server. This is the port - /// specified in asterisk's manager.conf file.
+ /// specified in asterisk's manager.conf file.
/// Default is 5038. ///
public int Port @@ -1215,7 +1215,7 @@ namespace AsterNET.Manager #region UserName /// /// Sets the username to use to connect to the asterisk server. This is the - /// username specified in asterisk's manager.conf file. + /// username specified in asterisk's manager.conf file. /// public string Username { @@ -1227,7 +1227,7 @@ namespace AsterNET.Manager #region Password /// /// Sets the password to use to connect to the asterisk server. This is the - /// password specified in asterisk's manager.conf file. + /// password specified in asterisk's manager.conf file. /// public string Password { @@ -1278,9 +1278,9 @@ namespace AsterNET.Manager #endregion #region KeepAliveAfterAuthenticationFailure - /// Set to true to try reconnecting to ther asterisk serve + /// Set to true to try reconnecting to ther asterisk serve /// even if the reconnection attempt threw an AuthenticationFailedException.
- /// Default is false. + /// Default is false. ///
public bool KeepAliveAfterAuthenticationFailure { @@ -1292,7 +1292,7 @@ namespace AsterNET.Manager #region KeepAlive /// /// Should we attempt to reconnect when the connection is lost?
- /// This is set to true after successful login and to false after logoff or after an authentication failure when keepAliveAfterAuthenticationFailure is false. + /// This is set to true after successful login and to false after logoff or after an authentication failure when keepAliveAfterAuthenticationFailure is false. ///
public bool KeepAlive { @@ -1585,7 +1585,7 @@ namespace AsterNET.Manager #region reconnect(bool init) /// /// Reconnects to the asterisk server when the connection is lost.
- /// While keepAlive is true we will try to reconnect. + /// While keepAlive is true we will try to reconnect. /// Reconnection attempts will be stopped when the logoff() method /// is called or when the login after a successful reconnect results in an /// AuthenticationFailedException suggesting that the manager @@ -1725,12 +1725,12 @@ namespace AsterNET.Manager #endregion #region IsConnected() - /// Returns true if there is a socket connection to the - /// asterisk server, false otherwise. + /// Returns true if there is a socket connection to the + /// asterisk server, false otherwise. /// /// - /// true if there is a socket connection to the - /// asterisk server, false otherwise. + /// true if there is a socket connection to the + /// asterisk server, false otherwise. /// public bool IsConnected() { diff --git a/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerResponse.cs b/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerResponse.cs index 2b54c44..de9da6a 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerResponse.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Response/ManagerResponse.cs @@ -184,7 +184,7 @@ namespace AsterNET.Manager.Response /// the key to lookup. /// /// the value of the attribute stored under this key or - /// null if there is no such attribute. + /// null if there is no such attribute. /// public string GetAttribute(string key) { diff --git a/Asterisk.2013/Asterisk.NET/Properties/AssemblyInfo.cs b/Asterisk.2013/Asterisk.NET/Properties/AssemblyInfo.cs index 1b3a1d1..b43d45c 100644 --- a/Asterisk.2013/Asterisk.NET/Properties/AssemblyInfo.cs +++ b/Asterisk.2013/Asterisk.NET/Properties/AssemblyInfo.cs @@ -2,17 +2,17 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("Asterisk.NET")] +[assembly: AssemblyTitle("AsterNET")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("X893, http://akb77.com/g")] -[assembly: AssemblyProduct("Asterisk.NET")] -[assembly: AssemblyCopyright("Copyright © 2005-2009")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("AsterNET")] +[assembly: AssemblyCopyright("Copyright © 2015")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Guid("abe98502-ea83-4b04-98c3-ffe3eabe06b0")] -[assembly: AssemblyVersion("1.6.3.1")] -[assembly: AssemblyFileVersion("1.6.3.1")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from diff --git a/Asterisk.2013/Asterisk.NET/Util/ThreadPool.cs b/Asterisk.2013/Asterisk.NET/Util/ThreadPool.cs index 80f42a6..cc22a30 100644 --- a/Asterisk.2013/Asterisk.NET/Util/ThreadPool.cs +++ b/Asterisk.2013/Asterisk.NET/Util/ThreadPool.cs @@ -50,7 +50,7 @@ namespace AsterNET.Util /// Gets a job from the queue. If none is availble the calling thread is /// blocked until one is added. /// - /// the next job to service, null if the worker thread should be shut down. + /// the next job to service, null if the worker thread should be shut down. internal AGIConnectionHandler obtainJob() { AGIConnectionHandler job = null;