Merge pull request #79 from herman1vdb/master

XML/Sandcastle Documentation
This commit is contained in:
Ben Merrills 2017-02-22 10:18:47 +00:00 committed by GitHub
commit 61ff9425ea
3641 changed files with 52302 additions and 342 deletions

View file

@ -57,6 +57,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>bin\Release\AsterNET.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Travis|AnyCPU'">
<OutputPath>bin\Travis\</OutputPath>
@ -66,6 +67,7 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>bin\Travis\AsterNET.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
@ -253,6 +255,7 @@
<Compile Include="Manager\Event\PRIEvent.cs" />
<Compile Include="Manager\Event\QueueMemberPauseEvent.cs" />
<Compile Include="Manager\Event\QueueMemberPenaltyEvent.cs" />
<Compile Include="Manager\Event\QueueMemberRinginuseEvent.cs" />
<Compile Include="Manager\Event\RTPReceiverStatEvent.cs" />
<Compile Include="Manager\Event\RTCPSentEvent.cs" />
<Compile Include="Manager\Event\RTCPReceivedEvent.cs" />

View file

@ -43,7 +43,7 @@ namespace AsterNET.FastAGI
#region SetCallerId
/// <summary>
/// Sets the caller id on the current channel.<br/>
/// The raw caller id to set, for example "John Doe<1234>".
/// The raw caller id to set, for example "John Doe&lt;1234&gt;".
/// </summary>
protected internal void SetCallerId(string callerId)
{
@ -65,7 +65,7 @@ namespace AsterNET.FastAGI
/// <summary>
/// Plays music on hold from the given music on hold class.
/// </summary>
/// <param name="musicOnHoldClass">the music on hold class to play music from as configures in Asterisk's <musiconhold.conf/code>.</param>
/// <param name="musicOnHoldClass">the music on hold class to play music from as configures in Asterisk's &lt;musiconhold.conf/code$gt;.</param>
protected internal void PlayMusicOnHold(string musicOnHoldClass)
{
this.Channel.SendCommand(new Command.SetMusicOnCommand(musicOnHoldClass));
@ -87,16 +87,15 @@ namespace AsterNET.FastAGI
/// Returns the status of the channel.<br/>
/// Return values:
/// <ul>
/// <li>0 Channel is down and available
/// <li>1 Channel is down, but reserved
/// <li>2 Channel is off hook
/// <li>3 Digits (or equivalent) have been dialed
/// <li>4 Line is ringing
/// <li>5 Remote end is ringing
/// <li>6 Line is up
/// <li>7 Line is busy
/// <li>0 Channel is down and available</li>
/// <li>1 Channel is down, but reserved</li>
/// <li>2 Channel is off hook</li>
/// <li>3 Digits (or equivalent) have been dialed</li>
/// <li>4 Line is ringing</li>
/// <li>5 Remote end is ringing</li>
/// <li>6 Line is up</li>
/// <li>7 Line is busy</li>
/// </ul>
///
/// </summary>
/// <returns> the status of the channel.
/// </returns>

View file

@ -1,22 +1,22 @@
using System;
namespace AsterNET.FastAGI.Command
{
/// <summary>
/// Returns the status of the specified channel.
/// If no channel name is given the returns the status of the current channel.<br/>
/// Return values:
/// <ul>
/// <li>0 Channel is down and available
/// <li>1 Channel is down, but reserved
/// <li>2 Channel is off hook
/// <li>3 Digits (or equivalent) have been dialed
/// <li>4 Line is ringing
/// <li>5 Remote end is ringing
/// <li>6 Line is up
/// <li>7 Line is busy
/// </ul>
/// </summary>
public class ChannelStatusCommand : AGICommand
/// <summary>
/// Returns the status of the specified channel.
/// If no channel name is given the returns the status of the current channel.<br/>
/// Return values:
/// <ul>
/// <li>0 Channel is down and available</li>
/// <li>1 Channel is down, but reserved</li>
/// <li>2 Channel is off hook</li>
/// <li>3 Digits (or equivalent) have been dialed</li>
/// <li>4 Line is ringing</li>
/// <li>5 Remote end is ringing</li>
/// <li>6 Line is up</li>
/// <li>7 Line is busy</li>
/// </ul>
/// </summary>
public class ChannelStatusCommand : AGICommand
{
private string channel;
public string Channel

View file

@ -12,7 +12,7 @@ namespace AsterNET.FastAGI.Command
private string varName;
/// <summary>
/// Get/Set the name of the variable to retrieve.<br>
/// Get/Set the name of the variable to retrieve.<br />
/// Since Asterisk 1.2 you can also use custom dialplan functions (like "func(args)") as variable.
/// </summary>
public string Variable

View file

@ -25,7 +25,7 @@ namespace AsterNET.FastAGI.Command
/// <summary>
/// Creates a new ReceiveTextCommand.
/// <param name=timeout>the milliseconds to wait for the channel to receive the text.</param>
/// <param name="timeout">the milliseconds to wait for the channel to receive the text.</param>
/// </summary>
public ReceiveTextCommand(int timeout)
{

View file

@ -171,6 +171,7 @@ namespace AsterNET
/// Obtains an array containing all the elements of the collection.
/// </summary>
/// <param name="objects">The array into which the elements of the collection will be stored.</param>
/// <param name="c"></param>
/// <returns>The array containing all the elements of the collection.</returns>
internal static object[] ToArray(ICollection c, object[] objects)
{
@ -242,6 +243,7 @@ namespace AsterNET
/// </summary>
/// <param name="dictionary"></param>
/// <param name="delim"></param>
/// <param name="delimKeyValue"></param>
/// <returns></returns>
internal static string JoinVariables(IDictionary dictionary, char[] delim, string delimKeyValue)
{
@ -743,6 +745,7 @@ namespace AsterNET
/// Builds the event based on the given map of attributes and the registered event classes.
/// </summary>
/// <param name="source">source attribute for the event</param>
/// <param name="list"></param>
/// <param name="attributes">map containing event attributes</param>
/// <returns>a concrete instance of ManagerEvent or null if no event class was registered for the event type.</returns>
internal static ManagerEvent BuildEvent(IDictionary<int, ConstructorInfo> list, ManagerConnection source,

View file

@ -44,7 +44,7 @@ namespace AsterNET.Manager.Action
/// <summary>
/// You can use this as a simple authentication mechanism.<br />
/// Rather than have to login with a username & password,
/// Rather than have to login with a username &amp; password,
/// you can specify a <b>ProxyKey</b> that must be passed from
/// a client before requests are processed.<br />
/// This is helpful in situations where you would like to authenticate and

View file

@ -11,10 +11,10 @@ namespace AsterNET.Manager.Action
/// Since Asterisk 1.2 a QueueStatusCompleteEvent is sent to denote the end of the generated dump.<br />
/// This action is implemented in apps/app_queue.c
/// </summary>
/// <seealso cref="Manager.event.QueueParamsEvent" />
/// <seealso cref="Manager.event.QueueMemberEvent" />
/// <seealso cref="Manager.event.QueueEntryEvent" />
/// <seealso cref="Manager.event.QueueStatusCompleteEvent" />
/// <seealso cref="Manager.Event.QueueParamsEvent" />
/// <seealso cref="Manager.Event.QueueMemberEvent" />
/// <seealso cref="Manager.Event.QueueEntryEvent" />
/// <seealso cref="Manager.Event.QueueStatusCompleteEvent" />
public class QueueStatusAction : ManagerActionEvent
{
#region Action

View file

@ -54,6 +54,7 @@ namespace AsterNET.Manager.Action
/// <summary>
/// Get/Set name of the channel to redirect.
/// </summary>
public string Channel { get; set; }
/// <summary>

View file

@ -9,8 +9,8 @@ namespace AsterNET.Manager.Action
/// the details. When all peers have been reported a PeerlistCompleteEvent is sent.<br />
/// Available since Asterisk 1.2
/// </summary>
/// <seealso cref="Manager.event.PeerEntryEvent" />
/// <seealso cref="Manager.event.PeerlistCompleteEvent" />
/// <seealso cref="Manager.Event.PeerEntryEvent" />
/// <seealso cref="Manager.Event.PeerlistCompleteEvent" />
public class SIPPeersAction : ManagerActionEvent
{
public override string Action

View file

@ -9,8 +9,8 @@ namespace AsterNET.Manager.Action
/// followed by a PeerlistCompleteEvent.<br />
/// Available since Asterisk 1.2
/// </summary>
/// <seealso cref="Manager.event.PeerEntryEvent" />
/// <seealso cref="Manager.event.PeerlistCompleteEvent" />
/// <seealso cref="Manager.Event.PeerEntryEvent" />
/// <seealso cref="Manager.Event.PeerlistCompleteEvent" />
public class SIPShowPeerAction : ManagerActionEvent
{
/// <summary> Creates a new empty SIPShowPeerAction.</summary>

View file

@ -8,8 +8,8 @@ namespace AsterNET.Manager.Action
/// For each active channel a StatusEvent is generated. After the state of all
/// channels has been reported a StatusCompleteEvent is generated.
/// </summary>
/// <seealso cref="Manager.event.StatusEvent" />
/// <seealso cref="Manager.event.StatusCompleteEvent" />
/// <seealso cref="Manager.Event.StatusEvent" />
/// <seealso cref="Manager.Event.StatusCompleteEvent" />
public class StatusAction : ManagerActionEvent
{
/// <summary>

View file

@ -8,8 +8,8 @@ namespace AsterNET.Manager.Action
/// For each zap channel a ZapShowChannelsEvent is generated. After all zap
/// channels have been listed a ZapShowChannelsCompleteEvent is generated.
/// </summary>
/// <seealso cref="Manager.event.ZapShowChannelsEvent" />
/// <seealso cref="Manager.event.ZapShowChannelsCompleteEvent" />
/// <seealso cref="Manager.Event.ZapShowChannelsEvent" />
/// <seealso cref="Manager.Event.ZapShowChannelsCompleteEvent" />
public class ZapShowChannelsAction : ManagerActionEvent
{
/// <summary>

View file

@ -13,15 +13,29 @@ namespace AsterNET.Manager.Event
: base(source)
{
}
/// <summary>
/// Get/Set the command ID
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public long CommandId { get; set; }
/// <summary>
/// Get/Set the command
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Command { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SubEvent { get; set; }
/// <summary>
/// Get/Set the result
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Result { get; set; }
/// <summary>
/// Get/Set the result number
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public int ResultCode { get; set; }
}
}

View file

@ -50,7 +50,7 @@ namespace AsterNET.Manager.Event
set { this.callerIdNum = value; }
}
/// <summary>
/// Get/Set the Caller*ID Name of the channel if set or &lg;unknown&gt; if none has been set.
/// Get/Set the Caller*ID Name of the channel if set or &lt;unknown&gt; if none has been set.
/// </summary>
public string CallerIdName
{
@ -68,7 +68,7 @@ namespace AsterNET.Manager.Event
/// <li>Ringing</li>
/// <li>Up</li>
/// <li>Busy</li>
/// <ul>
/// </ul>
/// </summary>
public string State
{

View file

@ -9,7 +9,7 @@ namespace AsterNET.Manager.Event
public class AbstractConfbridgeEvent : ManagerEvent
{
/// <summary>
///
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+10+Documentation" target="_blank" alt="Asterisk 10 wiki docs">Asterisk 10</see>.
/// </summary>
public string Conference { get; set; }

View file

@ -12,9 +12,13 @@ namespace AsterNET.Manager.Event
/// <summary>
/// Get/Set the conference number.
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Meetme { get; set; }
/// <summary>
/// Get/Set the conference user number
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public int Usernum { get; set; }
}
}

View file

@ -5,20 +5,118 @@ namespace AsterNET.Manager.Event
/// </summary>
public abstract class AbstractQueueMemberEvent : ManagerEvent
{
/// <summary>
/// AbstractQueueMemberEvent contructor
/// </summary>
/// <param name="source">ManagerConnection passed through in the event.</param>
public AbstractQueueMemberEvent(ManagerConnection source)
: base(source)
{
}
/// <summary>
/// Returns the name of the queue.
/// The name of the queue.
/// </summary>
public string Queue { get; set; }
/// <summary>
/// Returns the name of the member's interface.<br />
/// E.g. the channel name or agent group.
/// Returns the name of the member's interface.<br />
/// E.g. the channel name or agent group.<br />
/// <b>Removed since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.<br/>
/// <b>Replaced by : </b> <see cref="Interface"/> since <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Location { get; set; }
/// <summary>
/// The queue member's channel technology or location.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Interface { get; set; }
/// <summary>
/// Channel technology or location from which to read device state changes.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string StateInterface { get; set; }
/// <summary>
/// The name of the queue member.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string MemberName { get; set; }
/// <summary>
/// "dynamic" if the added member is a dynamic queue member,<br />
/// "realtime" if the added member is a realtime queue member,<br />
/// "static" if the added member is a static queue member.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Membership { get; set; }
/// <summary>
/// The penalty associated with the queue member. When calls are distributed members with higher penalties are considered last.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public int Penalty { get; set; }
/// <summary>
/// The number of calls this queue member has serviced.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public int CallsTaken { get; set; }
/// <summary>
/// The time this member last took a call, expressed in seconds since 00:00, Jan 1, 1970 UTC.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public long LastCall { get; set; }
/// <summary>
/// When queue member is paused (not accepting calls).<br/>
/// Evaluates <see langword="true"/> if this member has been paused,
/// <see langword="false"/> if not.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public bool Paused { get; set; }
/// <summary>
/// The numeric device state status of the queue member.<br/>
/// <para>
/// Valid status codes are:<br/>
/// <list type="number" start="0">
/// <item>AST_DEVICE_UNKNOWN</item>
/// <item>AST_DEVICE_NOT_INUSE</item>
/// <item>AST_DEVICE_INUSE</item>
/// <item>AST_DEVICE_BUSY</item>
/// <item>AST_DEVICE_INVALID</item>
/// <item>AST_DEVICE_UNAVAILABLE</item>
/// <item>AST_DEVICE_RINGING</item>
/// <item>AST_DEVICE_RINGINUSE</item>
/// <item>AST_DEVICE_ONHOLD</item>
/// </list>
/// </para>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public int Status { get; set; }
/// <summary>
/// Evaluates <see langword="true"/> if Ringinuse,
/// <see langword="false"/> if not.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public bool Ringinuse { get; set; }
/// <summary>
/// Evaluates <see langword="true"/> if member is in call,
/// <see langword="false"/> after LastCall time is updated.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Documentation" target="_blank" alt="Asterisk 13 wiki docs">Asterisk 13</see>.
/// </summary>
public bool InCall { get; set; }
/// <summary>
/// If set when paused, the reason the queue member was paused.<br />
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Documentation" target="_blank" alt="Asterisk 13 wiki docs">Asterisk 13</see>.
/// </summary>
public string PausedReason { get; set; }
}
}

View file

@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event
/// An AgentCallbackLoginEvent is triggered when an agent is successfully logged in using AgentCallbackLogin.<br />
/// It is implemented in channels/chan_agent.c
/// </summary>
/// <seealso cref="Manager.event.AgentCallbackLogoffEvent" />
/// <seealso cref="Manager.Event.AgentCallbackLogoffEvent" />
public class AgentCallbackLoginEvent : ManagerEvent
{
public AgentCallbackLoginEvent(ManagerConnection source)

View file

@ -5,7 +5,7 @@ namespace AsterNET.Manager.Event
/// AgentCallbackLogin is logged of.<br />
/// It is implemented in channels/chan_agent.c
/// </summary>
/// <seealso cref="Manager.event.AgentCallbackLoginEvent" />
/// <seealso cref="Manager.Event.AgentCallbackLoginEvent" />
public class AgentCallbackLogoffEvent : ManagerEvent
{
#region Agent

View file

@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event
/// An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin.<br />
/// It is implemented in channels/chan_agent.c
/// </summary>
/// <seealso cref="Manager.event.AgentLogoffEvent" />
/// <seealso cref="Manager.Event.AgentLogoffEvent" />
public class AgentLoginEvent : ManagerEvent
{
public AgentLoginEvent(ManagerConnection source)

View file

@ -4,7 +4,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
/// </summary>
/// <seealso cref="Manager.event.AgentLoginEvent" />
/// <seealso cref="Manager.Event.AgentLoginEvent" />
public class AgentLogoffEvent : ManagerEvent
{
public AgentLogoffEvent(ManagerConnection source)

View file

@ -2,10 +2,19 @@ namespace AsterNET.Manager.Event
{
public class AsyncAGIEvent : ManagerEvent
{
/// <summary>
/// Get/Set the Result
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Result { get; set; }
/// <summary>
/// Get/Set the command ID
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string CommandId { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SubEvent { get; set; }
public string Env { get; set; }

View file

@ -7,58 +7,200 @@ namespace AsterNET.Manager.Event
public class AttendedTransferEvent : ManagerEvent
{
public bool Result { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererChannel { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererChannelState { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererChannelStatedesc { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererCalleridNum { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererCalleridName { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererConnectedLineNum { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererConnectedLineName { get; set; }
public string OrigTransfererLanguage { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererAccountCode { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererContext { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererPriority { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigTransfererUniqueId { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigBridgeUniqueId { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigBridgeType { get; set; }
/// <summary>
/// Get/Set the identifier of the remote fax station.
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigBridgetechnology { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigBridgeCreator { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigBridgeName { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string OrigBridgeNumChannels { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererChannel { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererChannelState { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererChannelStatedesc { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererCalleridNum { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererCalleridName { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererConnectedLineNum { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererConnectedLineName { get; set; }
public string SecondTransfererLanguage { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererAccountCode { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererContext { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererExten { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererPriority { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondTransfererUniqueId { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondBridgeUniqueId { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondBridgeType { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondBridgeTechnology { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondBridgeCreator { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondBridgeName { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string SecondBridgeNumChannels { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeChannel { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeChannelState { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeChannelStatedesc { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeCalleridNum { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeCalleridName { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeConnectedLineNum { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeConnectedLineName { get; set; }
public string TransfereeLanguage { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeAccountCode { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeContext { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeExten { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereePriority { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string TransfereeUniqueId { get; set; }
public string TransferTargetChannel { get; set; }

View file

@ -7,22 +7,77 @@ namespace AsterNET.Manager.Event
/// </summary>
public abstract class BridgeActivityEvent : ManagerEvent
{
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string BridgeUniqueId { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string BridgeType { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string BridgeTechnology { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string BridgeCreator { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string BridgeName { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string BridgeNumChannels { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string ChannelState { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string ChannelStatedDesc { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string CallerIdNum { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string CallerIdName { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string ConnectedLineNum { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string ConnectedLineName { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Language { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string AccountCode { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Context { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Exten { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Documentation" target="_blank" alt="Asterisk 13 wiki docs">Asterisk 13</see>.
/// </summary>
public string Linkedid{ get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Priority { get; set; }
#region Constructors

View file

@ -3,6 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
/// <summary>
/// </summary>
namespace AsterNET.Manager.Event
{
public class FailedACLEvent : ManagerEvent
@ -14,8 +17,17 @@ namespace AsterNET.Manager.Event
public FailedACLEvent(ManagerConnection source)
: base(source) { }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string LocalAddress { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string RemoteAddress { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string ACLName { get; set; }
}

View file

@ -15,41 +15,49 @@ namespace AsterNET.Manager.Event
/// <summary>
/// Get/Set the extension in Asterisk's dialplan the fax was received
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Exten { get; set; }
/// <summary>
/// Get/Set the Caller*ID of the calling party or an empty string if none is
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string CallerId { get; set; }
/// <summary>
/// Get/Set the identifier of the remote fax station.
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string RemoteStationId { get; set; }
/// <summary>
/// Get/Set the identifier of the local fax station.
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string LocalStationId { get; set; }
/// <summary>
/// Get/Set the number of pages transferred.
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public int PagesTransferred { get; set; }
/// <summary>
/// Get/Set the row resolution of the received fax.
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public int Resolution { get; set; }
/// <summary>
/// Get/Set the transfer rate in bits/s.
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public int TransferRate { get; set; }
/// <summary>
/// Get/Set the filename of the received fax including its full path on the Asterisk server.
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public string Filename { get; set; }
}

View file

@ -5,7 +5,7 @@ namespace AsterNET.Manager.Event
/// It is implemented in channels/chan_sip.c.<br />
/// Available since Asterisk 1.2
/// </summary>
/// <seealso cref="Manager.event.UnholdEvent" />
/// <seealso cref="Manager.Event.UnholdEvent" />
public class HoldEvent : ManagerEvent
{
public HoldEvent(ManagerConnection source)

View file

@ -22,7 +22,7 @@ namespace AsterNET.Manager.Event
public string CallerId { get; set; }
/// <summary>
/// Get/Set the new Caller*ID Name if set or "&lg;Unknown&gt;" if none has been set.
/// Get/Set the new Caller*ID Name if set or "&lt;Unknown&gt;" if none has been set.
/// </summary>
public string CallerIdName { get; set; }

View file

@ -9,7 +9,8 @@ namespace AsterNET.Manager.Event
{
public ParkedCallGiveUpEvent(ManagerConnection source)
: base(source)
{
{
}
}
}

View file

@ -1,11 +1,11 @@
namespace AsterNET.Manager.Event
{
/// <summary>
/// A ParkedCallsCompleteEvent is triggered after all parked calls have been reported in response to a ParkedCallsAction.
/// </summary>
/// <seealso cref="Manager.Action.ParkedCallsAction"/>
/// <seealso cref="Manager.event.ParkedCallEvent"/>
public class ParkedCallsCompleteEvent : ResponseEvent
/// <summary>
/// A ParkedCallsCompleteEvent is triggered after all parked calls have been reported in response to a ParkedCallsAction.
/// </summary>
/// <seealso cref="Manager.Action.ParkedCallsAction"/>
/// <seealso cref="Manager.Event.ParkedCallEvent"/>
public class ParkedCallsCompleteEvent : ResponseEvent
{
public ParkedCallsCompleteEvent(ManagerConnection source)
: base(source)

View file

@ -4,7 +4,7 @@ namespace AsterNET.Manager.Event
/// A PeerlistCompleteEvent is triggered after the details of all peers has been reported in response to an SIPPeersAction or SIPShowPeerAction.<br/>
/// Available since Asterisk 1.2
/// </summary>
/// <seealso cref="Manager.event.PeerEntryEvent"/>
/// <seealso cref="Manager.Event.PeerEntryEvent"/>
/// <seealso cref="Manager.Action.SIPPeersAction"/>
/// <seealso cref="Manager.Action.SIPShowPeerAction"/>
public class PeerlistCompleteEvent : ResponseEvent

View file

@ -1,99 +1,71 @@
namespace AsterNET.Manager.Event
{
/// <summary>
/// A QueueMemberAddedEvent is triggered when a queue member is added to a queue.<br/>
/// It is implemented in apps/app_queue.c.<br/>
/// Available since Asterisk 1.2
/// </summary>
public class QueueMemberAddedEvent : AbstractQueueMemberEvent
/// <summary>
/// A QueueMemberAddedEvent is triggered when a queue member is added to a queue.<br/>
/// It is implemented in apps/app_queue.c.<br/>
/// <para>
/// <b>Available since : </b> <see href="http://www.voip-info.org/wiki/view/Asterisk+v1.2" target="_blank" alt="Asterisk 1.2 wiki docs">Asterisk 1.2</see>.<br/>
/// </para>
/// </summary>
public class QueueMemberAddedEvent : AbstractQueueMemberEvent
{
private string memberName;
private string membership;
private int penalty;
private int callsTaken;
private long lastCall;
private int status;
private bool paused;
/// <summary>
/// Returns the name of the member's interface.<br/>
/// E.g. the channel name or agent group.
/// </summary>
public string MemberName
{
get { return this.memberName; }
set { this.memberName = value; }
}
public new string MemberName { get; set; }
/// <summary>
/// Get/Set if the added member is a dynamic or static queue member.
/// "dynamic" if the added member is a dynamic queue member,
/// "static" if the added member is a static queue member.
/// </summary>
public string Membership
{
get { return membership; }
set { this.membership = value; }
}
/// <summary>
/// Get/Set the penalty for the added member. When calls are distributed
/// members with higher penalties are considered last.
/// </summary>
public int Penalty
{
get { return penalty; }
set { this.penalty = value; }
}
/// <summary>
/// Get/Set the number of calls answered by the member.
/// </summary>
public int CallsTaken
{
get { return callsTaken; }
set { this.callsTaken = value; }
}
/// <summary>
/// Get/Set the time (in seconds since 01/01/1970) the last successful call answered by the added member was hungup.
/// </summary>
public long LastCall
{
get { return lastCall; }
set { this.lastCall = value; }
}
/// <summary>
/// Get/Set the status of this queue member.<br/>
/// Valid status codes are:<br/>
/// <dl>
/// <dt>AST_DEVICE_UNKNOWN (0)</dt>
/// <dd>Queue member is available</dd>
/// <dt>AST_DEVICE_NOT_INUSE (1)</dt>
/// <dd>?</dd>
/// <dt>AST_DEVICE_INUSE (2)</dt>
/// <dd>?</dd>
/// <dt>AST_DEVICE_BUSY (3)</dt>
/// <dd>?</dd>
/// <dt>AST_DEVICE_INVALID (4)</dt>
/// <dd>?</dd>
/// <dt>AST_DEVICE_UNAVAILABLE (5)</dt>
/// <dd>?</dd>
/// </dl>
/// </summary>
public int Status
{
get { return status; }
set { this.status = value; }
}
/// <summary>
/// Get/Set value if this queue member is paused (not accepting calls).<br/>
/// true if this member has been paused or false if not.
/// </summary>
public bool Paused
{
get { return paused; }
set { this.paused = value; }
}
/// <summary>
/// Get/Set if the added member is a dynamic or static queue member.
/// "dynamic" if the added member is a dynamic queue member,
/// "static" if the added member is a static queue member.
/// </summary>
public new string Membership { get; set; }
public QueueMemberAddedEvent(ManagerConnection source)
/// <summary>
/// Get/Set the penalty for the added member. When calls are distributed
/// members with higher penalties are considered last.
/// </summary>
public new int Penalty { get; set; }
/// <summary>
/// Get/Set the number of calls answered by the member.
/// </summary>
public new int CallsTaken { get; set; }
/// <summary>
/// Get/Set the time (in seconds since 01/01/1970) the last successful call answered by the added member was hungup.
/// </summary>
public new long LastCall { get; set; }
/// <summary>
/// Get/Set the status of this queue member.<br/>
/// Valid status codes are:<br/>
/// <list type="number" start="0">
/// <item>AST_DEVICE_UNKNOWN</item>
/// <item>AST_DEVICE_NOT_INUSE</item>
/// <item>AST_DEVICE_INUSE</item>
/// <item>AST_DEVICE_BUSY</item>
/// <item>AST_DEVICE_INVALID</item>
/// <item>AST_DEVICE_UNAVAILABLE</item>
/// <item>AST_DEVICE_RINGING</item>
/// <item>AST_DEVICE_RINGINUSE</item>
/// <item>AST_DEVICE_ONHOLD</item>
/// </list>
/// </summary>
public new int Status { get; set; }
/// <summary>
/// Get/Set value if this queue member is paused (not accepting calls).<br/>
/// true if this member has been paused or false if not.
/// </summary>
public new bool Paused { get; set; }
/// <summary>
/// Creates a new QueueMemberAddedEvent
/// </summary>
/// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberAddedEvent(ManagerConnection source)
: base(source)
{
}

View file

@ -112,12 +112,13 @@ namespace AsterNET.Manager.Event
get { return this.status; }
set { this.status = value; }
}
/// <summary>
/// Is this queue member paused (not accepting calls)?<br/>
/// Available since Asterisk 1.2.<br/>
/// true if this member has been paused,
/// false if not
public bool Paused
/// <summary>
/// Is this queue member paused (not accepting calls)?<br/>
/// Available since Asterisk 1.2.<br/>
/// true if this member has been paused,
/// false if not
/// </summary>
public bool Paused
{
get { return this.paused; }
set { this.paused = value; }

View file

@ -4,40 +4,20 @@ namespace AsterNET.Manager.Event
{
/// <summary>
/// Raised when a member is paused/unpaused in the queue.<br />
/// Available since Asterisk 12
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public class QueueMemberPauseEvent : AbstractQueueMemberEvent
{
/// <summary>
/// The name of the queue member.
/// </summary>
public string MemberName { get; set; }
/// <summary>
/// Get/Set if this queue member is paused (not accepting calls).<br/>
/// true if this member has been paused or
/// false if not.
/// </summary>
public bool Paused { get; set; }
/// <summary>
/// The reason a member was paused.
/// </summary>
public string Reason { get; set; }
/// <summary>
/// Set to 1 if member is in call. Set to 0 after LastCall time is updated.<br/>
/// Available since Asterisk 13
/// Creates a new QueueMemberPauseEvent
/// </summary>
public string InCall { get; set; }
/// <summary>
/// If set when paused, the reason the queue member was paused.<br/>
/// Available since Asterisk 13
/// </summary>
public string PausedReason { get; set; }
public QueueMemberPauseEvent(ManagerConnection source)
/// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberPauseEvent(ManagerConnection source)
: base(source)
{
}

View file

@ -6,46 +6,35 @@ namespace AsterNET.Manager.Event
/// A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused.<br/>
/// It is implemented in apps/app_queue.c.<br/>
/// <para>
/// Available since Asterisk 1.2.<br/>
/// Replaced by <see cref="QueueMemberPauseEvent"/> since Asterisk 12.<br/>
/// Removed since Asterisk 13.<br/>
/// <b>Available since : </b> <see href="http://www.voip-info.org/wiki/view/Asterisk+v1.2" target="_blank" alt="Asterisk 1.2 wiki docs">Asterisk 1.2</see>.<br/>
/// <b>Replaced by : </b> <see cref="QueueMemberPauseEvent"/> since <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.<br/>
/// <b>Removed since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Documentation" target="_blank" alt="Asterisk 13 wiki docs">Asterisk 13</see>.<br/>
/// </para>
/// </summary>
public class QueueMemberPausedEvent : AbstractQueueMemberEvent
{
private string memberName;
private bool paused;
private string reason;
/// <summary>
/// The reason a member was paused
/// </summary>
public string Reason { get; set; }
/// <summary>
/// Returns the name of the member's interface.<br/>
/// E.g. the channel name or agent group.
/// </summary>
public string MemberName
{
get { return this.memberName; }
set { this.memberName = value; }
}
/// <summary>
/// <b>Not Available</b>, use <see cref="QueueMemberPauseEvent"/> instead.
/// </summary>
public new string PausedReason { get; set; }
/// <summary>
/// Get/Set if this queue member is paused (not accepting calls).<br/>
/// true if this member has been paused or
/// false if not.
/// </summary>
public bool Paused
{
get { return this.paused; }
set { this.paused = value; }
}
/// <summary>
/// <b>Not Available</b>, use <see cref="QueueMemberPauseEvent"/> instead.
/// </summary>
public new bool InCall { get; set; }
public string Reason
{
get { return this.reason; }
set { this.reason = value; }
}
public QueueMemberPausedEvent(ManagerConnection source)
/// <summary>
/// Creates a new QueueMemberPausedEvent
/// </summary>
/// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberPausedEvent(ManagerConnection source)
: base(source)
{
}
}
}
}

View file

@ -5,18 +5,16 @@ namespace AsterNET.Manager.Event
/// </summary>
public class QueueMemberPenaltyEvent : AbstractQueueMemberEvent
{
private int penalty;
/// <summary>
/// Get/Set the penalty for the queue location.
/// </summary>
public int Penalty
{
get { return this.penalty; }
set { this.penalty = value; }
}
public new int Penalty { get; set; }
public QueueMemberPenaltyEvent(ManagerConnection source)
/// <summary>
/// Creates a new QueueMemberPenaltyEvent
/// </summary>
/// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberPenaltyEvent(ManagerConnection source)
: base(source)
{
}

View file

@ -1,24 +1,24 @@
namespace AsterNET.Manager.Event
{
/// <summary>
/// A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue.<br/>
/// It is implemented in apps/app_queue.c.<br/>
/// Available since Asterisk 1.2
/// </summary>
public class QueueMemberRemovedEvent : AbstractQueueMemberEvent
/// <summary>
/// A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue.<br/>
/// It is implemented in apps/app_queue.c.<br/>
/// <para>
/// <b>Available since : </b> <see href="http://www.voip-info.org/wiki/view/Asterisk+v1.2" target="_blank" alt="Asterisk 1.2 wiki docs">Asterisk 1.2</see>.<br/>
/// </para>
/// </summary>
public class QueueMemberRemovedEvent : AbstractQueueMemberEvent
{
private string memberName;
/// <summary>
/// Returns the name of the member's interface.<br/>
/// E.g. the channel name or agent group.
/// </summary>
public string MemberName
{
get { return this.memberName; }
set { this.memberName = value; }
}
public new string MemberName { get; set; }
/// <summary>
/// Creates a new QueueMemberRemovedEvent
/// </summary>
/// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberRemovedEvent(ManagerConnection source)
: base(source)
{

View file

@ -0,0 +1,24 @@
namespace AsterNET.Manager.Event
{
/// <summary>
/// Raised when a member's ringinuse setting is changed
/// </summary>
public class QueueMemberRinginuseEvent : AbstractQueueMemberEvent
{
/// <summary>
/// Evaluates <see langword="true"/> if Ringinuse,
/// <see langword="false"/> if not.<br />
/// </summary>
public new bool Ringinuse { get; set; }
/// <summary>
/// Creates a new QueueMemberRinginuseEvent
/// </summary>
/// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberRinginuseEvent(ManagerConnection source)
: base(source)
{
}
}
}

View file

@ -1,10 +1,77 @@
namespace AsterNET.Manager.Event
{
/// <summary>
/// A QueueMemberStatusEvent shows the status of a QueueMemberEvent
/// </summary>
public class QueueMemberStatusEvent : QueueMemberEvent
{
/// <summary>
/// Raised when a Queue member's status has changed
/// </summary>
public class QueueMemberStatusEvent : AbstractQueueMemberEvent
{
/// <summary>
/// Returns the name of the member's interface.<br/>
/// E.g. the channel name or agent group.
/// </summary>
public new string MemberName { get; set; }
/// <summary>
/// Channel technology or location from which to read device state changes.<br />
/// </summary>
public new string StateInterface { get; set; }
/// <summary>
/// Get/Set if the added member is a dynamic or static queue member.
/// "dynamic" if the added member is a dynamic queue member,
/// "static" if the added member is a static queue member.
/// </summary>
public new string Membership { get; set; }
/// <summary>
/// Get/Set the penalty for the added member. When calls are distributed
/// members with higher penalties are considered last.
/// </summary>
public new int Penalty { get; set; }
/// <summary>
/// Get/Set the number of calls answered by the member.
/// </summary>
public new int CallsTaken { get; set; }
/// <summary>
/// Get/Set the time (in seconds since 01/01/1970) the last successful call answered by the added member was hungup.
/// </summary>
public new long LastCall { get; set; }
/// <summary>
/// Evaluates <see langword="true"/> if member is in call,
/// <see langword="false"/> after LastCall time is updated.<br />
/// </summary>
public new bool InCall { get; set; }
/// <summary>
/// Get/Set the status of this queue member.<br/>
/// Valid status codes are:<br/>
/// <list type="number" start="0">
/// <item>AST_DEVICE_UNKNOWN</item>
/// <item>AST_DEVICE_NOT_INUSE</item>
/// <item>AST_DEVICE_INUSE</item>
/// <item>AST_DEVICE_BUSY</item>
/// <item>AST_DEVICE_INVALID</item>
/// <item>AST_DEVICE_UNAVAILABLE</item>
/// <item>AST_DEVICE_RINGING</item>
/// <item>AST_DEVICE_RINGINUSE</item>
/// <item>AST_DEVICE_ONHOLD</item>
/// </list>
/// </summary>
public new int Status { get; set; }
/// <summary>
/// Get/Set value if this queue member is paused (not accepting calls).<br/>
/// true if this member has been paused or false if not.
/// </summary>
public new bool Paused { get; set; }
/// <summary>
/// Creates a new QueueMemberStatusEvent
/// </summary>
/// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberStatusEvent(ManagerConnection source)
: base(source)
{

View file

@ -1,12 +1,12 @@
namespace AsterNET.Manager.Event
{
/// <summary>
/// A StatusCompleteEvent is triggered after the state of all channels has been reported in response
/// to a StatusAction.
/// </summary>
/// <seealso cref="Manager.Action.StatusAction"/>
/// <seealso cref="Manager.event.StatusEvent"/>
public class StatusCompleteEvent : ResponseEvent
/// <summary>
/// A StatusCompleteEvent is triggered after the state of all channels has been reported in response
/// to a StatusAction.
/// </summary>
/// <seealso cref="Manager.Action.StatusAction"/>
/// <seealso cref="Manager.Event.StatusEvent"/>
public class StatusCompleteEvent : ResponseEvent
{
private int items;

View file

@ -1,12 +1,12 @@
namespace AsterNET.Manager.Event
{
/// <summary>
/// An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold.<br/>
/// It is implemented in channels/chan_sip.c.<br/>
/// Available since Asterisk 1.2
/// </summary>
/// <seealso cref="Manager.event.HoldEvent"/>
public class UnholdEvent : ManagerEvent
/// <summary>
/// An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold.<br/>
/// It is implemented in channels/chan_sip.c.<br/>
/// Available since Asterisk 1.2
/// </summary>
/// <seealso cref="Manager.Event.HoldEvent"/>
public class UnholdEvent : ManagerEvent
{
/// <summary>
/// Creates a new UnholdEvent.

View file

@ -35,7 +35,7 @@ namespace AsterNET.Manager.Event
/// The UserEvent is implemented in apps/app_userevent.c.<br/>
/// Note that you must register your UserEvent with the ManagerConnection you are using in order to be recognized.
/// </summary>
/// <seealso cref="Manager.ManagerConnection.RegisterUserEventClass(Type userEventClass)"/>
/// <seealso cref="Manager.ManagerConnection.RegisterUserEventClass"/>
public class UserEvent : ManagerEvent
{
private string userEventName;

View file

@ -5,7 +5,7 @@ namespace AsterNET.Manager.Event
/// in response to a ZapShowChannelsAction.
/// </summary>
/// <seealso cref="Manager.Action.ZapShowChannelsAction" />
/// <seealso cref="Manager.event.ZapShowChannelsEvent" />
/// <seealso cref="Manager.Event.ZapShowChannelsEvent" />
public class ZapShowChannelsCompleteEvent : ResponseEvent
{
public ZapShowChannelsCompleteEvent(ManagerConnection source)

View file

@ -10,36 +10,36 @@ namespace AsterNET.Manager.Event
private string context;
private string alarm;
/// <summary>
/// Get/Set the signalling of this zap channel.<br/>
/// Possible values are:
/// <ul>
/// <li>E & M Immediate</li>
/// <li>E & M Wink</li>
/// <li>E & M E1</li>
/// <li>Feature Group D (DTMF)</li>
/// <li>Feature Group D (MF)</li>
/// <li>Feature Group B (MF)</li>
/// <li>E911 (MF)</li>
/// <li>FXS Loopstart</li>
/// <li>FXS Groundstart</li>
/// <li>FXS Kewlstart</li>
/// <li>FXO Loopstart</li>
/// <li>FXO Groundstart</li>
/// <li>FXO Kewlstart</li>
/// <li>PRI Signalling</li>
/// <li>R2 Signalling</li>
/// <li>SF (Tone) Signalling Immediate</li>
/// <li>SF (Tone) Signalling Wink</li>
/// <li>SF (Tone) Signalling with Feature Group D (DTMF)</li>
/// <li>SF (Tone) Signalling with Feature Group D (MF)</li>
/// <li>SF (Tone) Signalling with Feature Group B (MF)</li>
/// <li>GR-303 Signalling with FXOKS</li>
/// <li>GR-303 Signalling with FXSKS</li>
/// <li>Pseudo Signalling</li>
/// </ul>
/// </summary>
public string Signalling
/// <summary>
/// Get/Set the signalling of this zap channel.<br/>
/// Possible values are:
/// <ul>
/// <li>E &amp; M Immediate</li>
/// <li>E &amp; M Wink</li>
/// <li>E &amp; M E1</li>
/// <li>Feature Group D (DTMF)</li>
/// <li>Feature Group D (MF)</li>
/// <li>Feature Group B (MF)</li>
/// <li>E911 (MF)</li>
/// <li>FXS Loopstart</li>
/// <li>FXS Groundstart</li>
/// <li>FXS Kewlstart</li>
/// <li>FXO Loopstart</li>
/// <li>FXO Groundstart</li>
/// <li>FXO Kewlstart</li>
/// <li>PRI Signalling</li>
/// <li>R2 Signalling</li>
/// <li>SF (Tone) Signalling Immediate</li>
/// <li>SF (Tone) Signalling Wink</li>
/// <li>SF (Tone) Signalling with Feature Group D (DTMF)</li>
/// <li>SF (Tone) Signalling with Feature Group D (MF)</li>
/// <li>SF (Tone) Signalling with Feature Group B (MF)</li>
/// <li>GR-303 Signalling with FXOKS</li>
/// <li>GR-303 Signalling with FXSKS</li>
/// <li>Pseudo Signalling</li>
/// </ul>
/// </summary>
public string Signalling
{
get { return signalling; }
set { this.signalling = value; }

View file

@ -373,10 +373,12 @@ namespace AsterNET.Manager
/// A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue.
/// </summary>
public event QueueMemberEventHandler QueueMember;
/// <summary>
/// A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused.
/// </summary>
public event QueueMemberPausedEventHandler QueueMemberPaused;
/// <summary>
/// A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused.
/// <b>Replaced by : </b> <see cref="QueueMemberPauseEvent"/> since <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.<br/>
/// <b>Removed since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Documentation" target="_blank" alt="Asterisk 13 wiki docs">Asterisk 13</see>.<br/>
/// </summary>
public event QueueMemberPausedEventHandler QueueMemberPaused;
/// <summary>
/// A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue.
/// </summary>
@ -513,7 +515,7 @@ namespace AsterNET.Manager
/// <summary>
/// A QueueMemberPauseEvent is triggered when a queue member is paused or unpaused.<br />
/// Available since Asterisk 12
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
public event QueueMemberPauseEventHandler QueueMemberPause;

View file

@ -90,7 +90,7 @@ namespace AsterNET.Manager
#region mrReaderCallbback(IAsyncResult ar)
//// <summary>
/// <summary>
/// Async Read callback
/// </summary>
/// <param name="ar">IAsyncResult</param>
@ -184,7 +184,7 @@ namespace AsterNET.Manager
#region Run()
//// <summary>
/// <summary>
/// Reads line by line from the asterisk server, sets the protocol identifier as soon as it is
/// received and dispatches the received events and responses via the associated dispatcher.
/// </summary>

View file

@ -40,7 +40,7 @@ namespace AsterNET.Manager.Response
/// <summary>
/// Store all unknown (without setter) keys from manager event.<br />
/// Use in default Parse method <see cref="Parse(string key, string value)" />.
/// Use in default Parse method <see cref="Parse" />.
/// </summary>
public Dictionary<string, string> Attributes
{

View file

@ -1,6 +1,12 @@
19.10.2016 (herman1vdb)
Update documentation and fix XML comments and enable xml documentation output
18.10.2016 (herman1vdb)
Refactor QueueMemberEvent classes, update comments and update sandcastle documentation to be able to work with Git Hub Pages
21.09.2016 (herman1vdb)
Added events DialEndEvent, QueueCallerJoinEvent, QueueCallerLeaveEvent for further Asterisk 13 support
20.09.2016 (herman1vdb)
Added DialBeginEvent

View file

@ -17,7 +17,7 @@ life of the project.</para>
</listItem>
<listItem>
<para>[TODO: Add links to each specific version page]</para>
<para><link xlink:href="3ceb3e8a-c84e-4f2a-8e83-b67870ba79f9" /></para>
</listItem>
</list>

View file

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<topic id="3ceb3e8a-c84e-4f2a-8e83-b67870ba79f9" revisionNumber="1">
<developerConceptualDocument
xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5"
xmlns:xlink="http://www.w3.org/1999/xlink">
<introduction>
<para>
Version [TODO: Version] was released on [TODO: Date].
</para>
</introduction>
<section>
<title>Changes in This Release</title>
<content>
<list class="bullet">
<listItem>
<para>[TODO: Add change items here]</para>
</listItem>
</list>
</content>
</section>
<relatedTopics>
<link xlink:href="100303f2-3dd8-401b-a594-579aae2a939c" />
</relatedTopics>
</developerConceptualDocument>
</topic>

View file

@ -2,49 +2,30 @@
<topic id="79b6241e-05a3-441c-b6a1-51f2b5b7f265" revisionNumber="1">
<developerConceptualDocument xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink">
<introduction>
<para>This is a sample conceptual topic. You can use this as a starting point for adding more conceptual
content to your help project.</para>
<para>AsterNET is an open source framework for Asterisk AMI and FastAGI. AsterNET allows you to talk to Asterisk AMI from any .NET application and create FastAGI applications in any .NET language.</para>
</introduction>
<section>
<title>Getting Started</title>
<title>History</title>
<content>
<para>To get started, add a documentation source to the project (a Visual Studio solution, project, or
assembly and XML comments file). See the <legacyBold>Getting Started</legacyBold> topics in the Sandcastle Help
File Builder's help file for more information. The following default items are included in this project:</para>
<para>AsterNET is a fork of Asterisk.NET. Now we've reached release status and AsterNET version 1.0.0 we feel this is a good separation point from the original project.</para>
<list class="bullet">
<listItem>
<para><localUri>ContentLayout.content</localUri> - Use the content layout file to manage the
conceptual content in the project and define its layout in the table of contents.</para>
</listItem>
<listItem>
<para>The <localUri>.\Media</localUri> folder - Place images in this folder that you will reference
from conceptual content using <codeInline>medialLink</codeInline> or <codeInline>mediaLinkInline</codeInline>
elements. If you will not have any images in the file, you may remove this folder.</para>
</listItem>
<listItem>
<para>The <localUri>.\icons</localUri> folder - This contains a default logo for the help file. You
may replace it or remove it and the folder if not wanted. If removed or if you change the file name, update
the <ui>Transform Args</ui> project properties page by removing or changing the filename in the
<codeInline>logoFile</codeInline> transform argument. Note that unlike images referenced from conceptual topics,
the logo file should have its <legacyBold>BuildAction</legacyBold> property set to <codeInline>Content</codeInline>.</para>
</listItem>
<listItem>
<para>The <localUri>.\Content</localUri> folder - Use this to store your conceptual topics. You may
name the files and organize them however you like. One suggestion is to lay the files out on disk as you have
them in the content layout file as shown in this project but the choice is yours. Files can be added via the
Solution Explorer or from within the content layout file editor. Files must appear in the content layout file
in order to be compiled into the help file.</para>
</listItem>
</list>
<para>See the <legacyBold>Conceptual Content</legacyBold> topics in the Sandcastle Help File Builder's
help file for more information. See the <legacyBold> Sandcastle MAML Guide</legacyBold> for details on Microsoft
Assistance Markup Language (MAML) which is used to create these topics.</para>
<para>
<localUri>
Special Thanks
<externalLink>
<linkText>http://www.zapappi.com</linkText>
<linkUri>http://www.zapappi.com</linkUri>
<linkTarget>_blank</linkTarget>
</externalLink>
and
<externalLink>
<linkText>http://www.jetbrains.com/resharper/</linkText>
<linkUri>http://www.jetbrains.com/resharper/</linkUri>
<linkTarget>_blank</linkTarget>
</externalLink>
</localUri>
</para>
</content>
</section>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Topics>
<Topic id="79b6241e-05a3-441c-b6a1-51f2b5b7f265" visible="True" isDefault="true" isSelected="true" title="Welcome to the [TODO: Add project name]">
<Topic id="79b6241e-05a3-441c-b6a1-51f2b5b7f265" visible="True" isSelected="true" title="Welcome to AsterNet Class library" linkText="Welcome">
<HelpKeywords>
<HelpKeyword index="K" term="Welcome" />
</HelpKeywords>

View file

@ -14,7 +14,7 @@
<Name>Documentation</Name>
<!-- SHFB properties -->
<FrameworkVersion>.NET Framework 4.0</FrameworkVersion>
<OutputPath>.\Help\</OutputPath>
<OutputPath>..\..\docs\</OutputPath>
<HtmlHelpName>Documentation</HtmlHelpName>
<Language>en-US</Language>
<TransformComponentArguments>
@ -31,12 +31,36 @@
<DocumentationSource sourceFile="..\Asterisk.NET\bin\Debug\AsterNET.xml" xmlns="" />
</DocumentationSources>
<BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>
<HelpFileFormat>HtmlHelp1, Website</HelpFileFormat>
<HelpFileFormat>Website</HelpFileFormat>
<IndentHtml>False</IndentHtml>
<KeepLogFile>True</KeepLogFile>
<DisableCodeBlockComponent>False</DisableCodeBlockComponent>
<CppCommentsFixup>False</CppCommentsFixup>
<CleanIntermediates>True</CleanIntermediates>
<MaximumGroupParts>2</MaximumGroupParts>
<NamespaceGrouping>False</NamespaceGrouping>
<SyntaxFilters>Standard</SyntaxFilters>
<SdkLinkTarget>Blank</SdkLinkTarget>
<RootNamespaceContainer>False</RootNamespaceContainer>
<PresentationStyle>VS2013</PresentationStyle>
<Preliminary>False</Preliminary>
<NamingMethod>MemberName</NamingMethod>
<HelpTitle>AsterNet Class Library %28Sandcastle documentation%29</HelpTitle>
<ContentPlacement>AboveNamespaces</ContentPlacement>
<NamespaceSummaries>
<NamespaceSummaryItem name="(global)" isDocumented="False" xmlns="" />
<NamespaceSummaryItem name="AsterNET" isDocumented="True" xmlns="">AsterNet</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.FastAGI" isDocumented="True" xmlns="">AsterNet FastAGI</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.FastAGI.Command" isDocumented="True" xmlns="">AsterNet FastAGI Command</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.FastAGI.MappingStrategies" isDocumented="True" xmlns="">AsterNet FastAGI Mapping Strategies</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.IO" isDocumented="True" xmlns="">AsterNet IO</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.Manager" isDocumented="True" xmlns="">AsterNet Manager</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.Manager.Action" isDocumented="True" xmlns="">AsterNet Manager Action</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.Manager.Event" isDocumented="True" xmlns="">AsterNet Manager Event</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.Manager.Response" isDocumented="True" xmlns="">AsterNet Manager Response</NamespaceSummaryItem>
<NamespaceSummaryItem name="AsterNET.Util" isDocumented="True" xmlns="">AsterNet Util</NamespaceSummaryItem></NamespaceSummaries>
<ProjectSummary>
AsterNET is an open source .NET framework for Asterisk AMI and FastAGI. AsterNET allows you to talk to Asterisk AMI from any .NET application and create FastAGI applications in any .NET language. http://www.xdev.net/projects/asternet/ </ProjectSummary>
</PropertyGroup>
<!-- There are no properties for these groups. AnyCPU needs to appear in order for Visual Studio to perform
the build. The others are optional common platform types that may appear. -->
@ -68,6 +92,7 @@
</ItemGroup>
<ItemGroup>
<None Include="Content\VersionHistory\v1.0.0.0.aml" />
<None Include="Content\VersionHistory\v1.0.1.0.aml" />
<None Include="Content\VersionHistory\VersionHistory.aml" />
<None Include="Content\Welcome.aml" />
</ItemGroup>

233
docs/SearchHelp.aspx Normal file
View file

@ -0,0 +1,233 @@
<%@ Page Language="C#" EnableViewState="False" %>
<script runat="server">
//===============================================================================================================
// System : Sandcastle Help File Builder
// File : SearchHelp.aspx
// Author : Eric Woodruff (Eric@EWoodruff.us)
// Updated : 05/15/2014
// Note : Copyright 2007-2015, Eric Woodruff, All rights reserved
// Compiler: Microsoft C#
//
// This file contains the code used to search for keywords within the help topics using the full-text index
// files created by the help file builder.
//
// This code is published under the Microsoft Public License (Ms-PL). A copy of the license should be
// distributed with the code. It can also be found at the project website: http://SHFB.CodePlex.com. This
// notice, the author's name, and all copyright notices must remain intact in all applications, documentation,
// and source files.
//
// Date Who Comments
// ==============================================================================================================
// 06/24/2007 EFW Created the code
// 02/17/2012 EFW Switched to JSON serialization to support websites that use something other than ASP.NET
// such as PHP.
// 05/15/2014 EFW Updated for use with the lightweight website presentation styles
//===============================================================================================================
/// <summary>
/// This class is used to track the results and their rankings
/// </summary>
private class Ranking
{
public string Filename, PageTitle;
public int Rank;
public Ranking(string file, string title, int rank)
{
Filename = file;
PageTitle = title;
Rank = rank;
}
}
/// <summary>
/// Render the search results
/// </summary>
/// <param name="writer">The writer to which the results are written</param>
protected override void Render(HtmlTextWriter writer)
{
JavaScriptSerializer jss = new JavaScriptSerializer();
string searchText, ftiFile;
char letter;
bool sortByTitle = false;
jss.MaxJsonLength = Int32.MaxValue;
// The keywords for which to search should be passed in the query string
searchText = this.Request.QueryString["Keywords"];
if(String.IsNullOrEmpty(searchText))
{
writer.Write("<strong>Nothing found</strong>");
return;
}
// An optional SortByTitle option can also be specified
if(this.Request.QueryString["SortByTitle"] != null)
sortByTitle = Convert.ToBoolean(this.Request.QueryString["SortByTitle"]);
List<string> keywords = this.ParseKeywords(searchText);
List<char> letters = new List<char>();
List<string> fileList;
Dictionary<string, List<long>> ftiWords, wordDictionary = new Dictionary<string,List<long>>();
// Load the file index
using(StreamReader sr = new StreamReader(Server.MapPath("fti/FTI_Files.json")))
{
fileList = jss.Deserialize<List<string>>(sr.ReadToEnd());
}
// Load the required word index files
foreach(string word in keywords)
{
letter = word[0];
if(!letters.Contains(letter))
{
letters.Add(letter);
ftiFile = Server.MapPath(String.Format(CultureInfo.InvariantCulture, "fti/FTI_{0}.json", (int)letter));
if(File.Exists(ftiFile))
{
using(StreamReader sr = new StreamReader(ftiFile))
{
ftiWords = jss.Deserialize<Dictionary<string, List<long>>>(sr.ReadToEnd());
}
foreach(string ftiWord in ftiWords.Keys)
wordDictionary.Add(ftiWord, ftiWords[ftiWord]);
}
}
}
// Perform the search and return the results as a block of HTML
writer.Write(this.Search(keywords, fileList, wordDictionary, sortByTitle));
}
/// <summary>
/// Split the search text up into keywords
/// </summary>
/// <param name="keywords">The keywords to parse</param>
/// <returns>A list containing the words for which to search</returns>
private List<string> ParseKeywords(string keywords)
{
List<string> keywordList = new List<string>();
string checkWord;
string[] words = Regex.Split(keywords, @"\W+");
foreach(string word in words)
{
checkWord = word.ToLower(CultureInfo.InvariantCulture);
if(checkWord.Length > 2 && !Char.IsDigit(checkWord[0]) && !keywordList.Contains(checkWord))
keywordList.Add(checkWord);
}
return keywordList;
}
/// <summary>
/// Search for the specified keywords and return the results as a block of HTML
/// </summary>
/// <param name="keywords">The keywords for which to search</param>
/// <param name="fileInfo">The file list</param>
/// <param name="wordDictionary">The dictionary used to find the words</param>
/// <param name="sortByTitle">True to sort by title, false to sort by ranking</param>
/// <returns>A block of HTML representing the search results</returns>
private string Search(List<string> keywords, List<string> fileInfo,
Dictionary<string, List<long>> wordDictionary, bool sortByTitle)
{
StringBuilder sb = new StringBuilder(10240);
Dictionary<string, List<long>> matches = new Dictionary<string, List<long>>();
List<long> occurrences;
List<int> matchingFileIndices = new List<int>(), occurrenceIndices = new List<int>();
List<Ranking> rankings = new List<Ranking>();
string filename, title;
string[] fileIndex;
bool isFirst = true;
int idx, wordCount, matchCount;
foreach(string word in keywords)
{
if(!wordDictionary.TryGetValue(word, out occurrences))
return "<strong>Nothing found</strong>";
matches.Add(word, occurrences);
occurrenceIndices.Clear();
// Get a list of the file indices for this match
foreach(long entry in occurrences)
occurrenceIndices.Add((int)(entry >> 16));
if(isFirst)
{
isFirst = false;
matchingFileIndices.AddRange(occurrenceIndices);
}
else
{
// After the first match, remove files that do not appear for
// all found keywords.
for(idx = 0; idx < matchingFileIndices.Count; idx++)
if(!occurrenceIndices.Contains(matchingFileIndices[idx]))
{
matchingFileIndices.RemoveAt(idx);
idx--;
}
}
}
if(matchingFileIndices.Count == 0)
return "<strong>Nothing found</strong>";
// Rank the files based on the number of times the words occurs
foreach(int index in matchingFileIndices)
{
// Split out the title, filename, and word count
fileIndex = fileInfo[index].Split('\x0');
title = fileIndex[0];
filename = fileIndex[1];
wordCount = Convert.ToInt32(fileIndex[2]);
matchCount = 0;
foreach(string word in keywords)
{
occurrences = matches[word];
foreach(long entry in occurrences)
if((int)(entry >> 16) == index)
matchCount += (int)(entry & 0xFFFF);
}
rankings.Add(new Ranking(filename, title, matchCount * 1000 / wordCount));
if(rankings.Count > 99)
break;
}
// Sort by rank in descending order or by page title in ascending order
rankings.Sort(delegate (Ranking x, Ranking y)
{
if(!sortByTitle)
return y.Rank - x.Rank;
return x.PageTitle.CompareTo(y.PageTitle);
});
// Format the file list and return the results
sb.Append("<ol>");
foreach(Ranking r in rankings)
sb.AppendFormat("<li><a href=\"{0}\" \" target=\"_blank\">{1}</a></li>", r.Filename, r.PageTitle);
sb.Append("</ol>");
if(rankings.Count < matchingFileIndices.Count)
sb.AppendFormat("<p>Omitted {0} more results</p>", matchingFileIndices.Count - rankings.Count);
return sb.ToString();
}
</script>

173
docs/SearchHelp.inc.php Normal file
View file

@ -0,0 +1,173 @@
<?
// Contributed to the Sandcastle Help File Builder project by Thomas Levesque
class Ranking
{
public $filename;
public $pageTitle;
public $rank;
function __construct($file, $title, $rank)
{
$this->filename = $file;
$this->pageTitle = $title;
$this->rank = $rank;
}
}
/// <summary>
/// Split the search text up into keywords
/// </summary>
/// <param name="keywords">The keywords to parse</param>
/// <returns>A list containing the words for which to search</returns>
function ParseKeywords($keywords)
{
$keywordList = array();
$words = preg_split("/[^\w]+/", $keywords);
foreach($words as $word)
{
$checkWord = strtolower($word);
$first = substr($checkWord, 0, 1);
if(strlen($checkWord) > 2 && !ctype_digit($first) && !in_array($checkWord, $keywordList))
{
array_push($keywordList, $checkWord);
}
}
return $keywordList;
}
/// <summary>
/// Search for the specified keywords and return the results as a block of
/// HTML.
/// </summary>
/// <param name="keywords">The keywords for which to search</param>
/// <param name="fileInfo">The file list</param>
/// <param name="wordDictionary">The dictionary used to find the words</param>
/// <param name="sortByTitle">True to sort by title, false to sort by
/// ranking</param>
/// <returns>A block of HTML representing the search results.</returns>
function Search($keywords, $fileInfo, $wordDictionary, $sortByTitle)
{
$sb = "<ol>";
$matches = array();
$matchingFileIndices = array();
$rankings = array();
$isFirst = true;
foreach($keywords as $word)
{
if (!array_key_exists($word, $wordDictionary))
{
return "<strong>Nothing found</strong>";
}
$occurrences = $wordDictionary[$word];
$matches[$word] = $occurrences;
$occurrenceIndices = array();
// Get a list of the file indices for this match
foreach($occurrences as $entry)
array_push($occurrenceIndices, ($entry >> 16));
if($isFirst)
{
$isFirst = false;
foreach($occurrenceIndices as $i)
{
array_push($matchingFileIndices, $i);
}
}
else
{
// After the first match, remove files that do not appear for
// all found keywords.
for($idx = 0; $idx < count($matchingFileIndices); $idx++)
{
if (!in_array($matchingFileIndices[$idx], $occurrenceIndices))
{
array_splice($matchingFileIndices, $idx, 1);
$idx--;
}
}
}
}
if(count($matchingFileIndices) == 0)
{
return "<strong>Nothing found</strong>";
}
// Rank the files based on the number of times the words occurs
foreach($matchingFileIndices as $index)
{
// Split out the title, filename, and word count
$fileIndex = explode("\x00", $fileInfo[$index]);
$title = $fileIndex[0];
$filename = $fileIndex[1];
$wordCount = intval($fileIndex[2]);
$matchCount = 0;
foreach($keywords as $words)
{
$occurrences = $matches[$word];
foreach($occurrences as $entry)
{
if(($entry >> 16) == $index)
$matchCount += $entry & 0xFFFF;
}
}
$r = new Ranking($filename, $title, $matchCount * 1000 / $wordCount);
array_push($rankings, $r);
if(count($rankings) > 99)
break;
}
// Sort by rank in descending order or by page title in ascending order
if($sortByTitle)
{
usort($rankings, "cmprankbytitle");
}
else
{
usort($rankings, "cmprank");
}
// Format the file list and return the results
foreach($rankings as $r)
{
$f = $r->filename;
$t = $r->pageTitle;
$sb .= "<li><a href=\"$f\" target=\"_blank\">$t</a></li>";
}
$sb .= "</ol";
if(count($rankings) < count($matchingFileIndices))
{
$c = count(matchingFileIndices) - count(rankings);
$sb .= "<p>Omitted $c more results</p>";
}
return $sb;
}
function cmprank($x, $y)
{
return $y->rank - $x->rank;
}
function cmprankbytitle($x, $y)
{
return strcmp($x->pageTitle, $y->pageTitle);
}
?>

58
docs/SearchHelp.php Normal file
View file

@ -0,0 +1,58 @@
<?
// Contributed to the Sandcastle Help File Builder project by Thomas Levesque
include("SearchHelp.inc.php");
$sortByTitle = false;
// The keywords for which to search should be passed in the query string
$searchText = $_GET["Keywords"];
if(empty($searchText))
{
?>
<strong>Nothing found</strong>
<?
return;
}
// An optional SortByTitle option can also be specified
if($_GET["SortByTitle"] == "true")
$sortByTitle = true;
$keywords = ParseKeywords($searchText);
$letters = array();
$wordDictionary = array();
// Load the file index
$json = file_get_contents("fti/FTI_Files.json");
$fileList = json_decode($json);
// Load the required word index files
foreach($keywords as $word)
{
$letter = substr($word, 0, 1);
if(!in_array($letter, $letters))
{
array_push($letters, $letter);
$ascii = ord($letter);
$ftiFile = "fti/FTI_$ascii.json";
if(file_exists($ftiFile))
{
$json = file_get_contents($ftiFile);
$ftiWords = json_decode($json, true);
foreach($ftiWords as $ftiWord => $val)
{
$wordDictionary[$ftiWord] = $val;
}
}
}
}
// Perform the search and return the results as a block of HTML
$results = Search($keywords, $fileList, $wordDictionary, $sortByTitle);
echo $results;
?>

31
docs/Web.Config Normal file
View file

@ -0,0 +1,31 @@
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<system.web>
<compilation debug="false">
<assemblies>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</assemblies>
</compilation>
<pages>
<namespaces>
<add namespace="System"/>
<add namespace="System.Collections.Generic"/>
<add namespace="System.Globalization"/>
<add namespace="System.IO"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Script.Serialization"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Xml"/>
<add namespace="System.Xml.Serialization" />
<add namespace="System.Xml.XPath"/>
</namespaces>
</pages>
</system.web>
<appSettings>
<!-- Increase this value if you get an "Operation is not valid due to the current state of the object" error
when using the search page. -->
<add key="aspnet:MaxJsonDeserializerMembers" value="100000" />
</appSettings>
</configuration>

5530
docs/WebKI.xml Normal file

File diff suppressed because it is too large Load diff

3484
docs/WebTOC.xml Normal file

File diff suppressed because it is too large Load diff

1
docs/fti/FTI_100.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_101.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_102.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_103.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_104.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_105.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_106.json Normal file
View file

@ -0,0 +1 @@
{"jetbrains":[196609],"joins":[786435,2424833,3735553,4849665,69664770,171966465,173670401,176619523],"join":[786435,2424833,3473414,176619523],"joines":[786433,3473409,69664769,171573249,176619521],"just":[786433,6029313,51249153,51314689,51380225,69271553,69664771,83623937,111869953,157220865,163708929,169345025,175570945,175702017,176619521],"joineventhandler":[3473415,69533697,176357382],"joinevent":[3473409,22675459,59834375,69664771,89128963,137232386,137297922,137363458,171573258,173867010,176357381],"john":[10747905,32899073,157220865],"jabberevent":[22544387,59703303,69664769,88997891,136052739,136118275,171442186,171835393],"jitterbufstatsevent":[22609923,59768839,69664769,89063427,136183811,136249347,136314883,136380419,136445955,136511491,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,171507722,171835393],"job":[28377089,69009409,180551681],"january":[31981569,32047105,32112641,32178177,32636929,32702465,38273025,38338561,38404097,38469633,39190529,39256065,69337089,72089601,78970881,79233025,99680257,100270081,158662658,158924802],"joined":[50331649,83230721,89128963,110493697,137232385,137297921,137363457,163315713,171573251],"jobs":[69140481,180551681],"jon":[69664769,175702017],"jan":[85655553,91619329,91684865,91750401,91815937,91881473,118095873,167968769,174063617,174129153,174194689,174260225,174325761],"jitter":[92536833,92602369,148504582,148897798,174981121,175046657]}

1
docs/fti/FTI_107.json Normal file
View file

@ -0,0 +1 @@
{"key":[10747908,27590659,27656195,27721731,27787267,27852803,27918339,27983875,28049411,30474247,30605313,30670856,30736391,35717121,35782658,35913735,36044807,47906824,48037896,48234504,48365576,49283077,49348613,50462726,50593798,55574534,55705606,60096520,64225287,66060294,66191366,67567626,67698696,69271553,69337091,69402625,69599234,70123521,74383361,74448897,74514433,74579969,77463553,77529089,77594625,78118914,78184450,78249987,80150529,80216065,82182146,82247682,82313219,82378755,82771972,83034114,83099650,83165186,83558402,85131265,85196801,88145922,93650945,93978625,94568449,97648641,97714177,97845254,97910785,97976326,107741190,107937798,108068866,108134406,108265473,108331014,109314049,109445126,109510657,109969410,133365766,154468354,156762113,156827649,156893185,157220868,157745155,157810691,157876228,159973377,160038913,160169985,160301057,162267139,162332675,162398213,162463749,162856964,163119106,163184642,163250178,163643394,166199297,167510017,170590210,176750593,179109892,179175427,179240963,179306499,179372035,179437571,179503107,179568643,179830785],"kind":[10747906,31719425,31784961,48496641,49348609,69337089,69599233,70516738,82444289,82771969,86507521,92733441,108527617,109379585,121307137,149946369,157220866,158531585,162529282,162856961,168820737,175177729],"keytree":[30605317,35586056,35782661,69337089,71368705,78053379,78118913,97517569,97583110,97714181,157679621,157745153],"keys":[30605313,84672514,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,115474434,137625601,155320321,164757506,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"know":[69599233,69730305,86310913,120848385,160694273,168624129,179306497],"kewlstart":[93454338,151912450,175898626],"keepalive":[93585409,152436741,176619521],"keepaliveafterauthenticationfailure":[93585410,152436737,152502277,176619522]}

1
docs/fti/FTI_108.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_109.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_110.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_111.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_112.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_113.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_114.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_115.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_116.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_117.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_118.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_119.json Normal file
View file

@ -0,0 +1 @@
{"welcome":[131073,196609],"www":[196610],"wchar_t":[8650753,8781825,8847361,8978433,10027009,31326209,31391745,31916033,32047105,32112641,32178177,32309249,32440321,32571393,32702465,33423361,33554433,95092738],"waits":[10747912,30998529,31064065,31129601,31326210,31391746,33554433,69337091,70254595,70385668,157220872,158138370,159842305],"waiting":[10747906,31326209,31391745,49676289,69140481,69337089,69599234,69730305,70385666,75038721,82968577,83296257,86310913,89128961,89194497,89915394,91226113,91291649,91422721,92012547,94306305,109903873,110755841,120848385,138674177,138870789,143130625,145489922,145686530,146014209,155189253,157220866,158138369,163053571,163381250,168624129,171573249,171638785,172359682,173670401,173735937,173867009,174456835,179437570,180551681],"waitfordigit":[10747905,33554437,157220865],"waitfordigitcommand":[13369347,41287684,41353223,41418759,69337089,72613894,80084995,101515266,157417473,159842315],"write":[13959169,43122693,69271553,69599233,157220865,160432129,164757505],"writeex":[13959169,43188229,160432129],"warning":[14024708,44367880,44433416,44498953,44564489,73138181,160497668,160563201],"want":[18219009,35323905,35389441,40960001,54263809,69599234,76087297,163381250,164757505],"waitsleepjoin":[28311553,68550657,180486145],"work":[28377089,54263810,69074945,69599234,164757506,180551681],"wait":[31064065,31129601,31391745,33554434,36438017,36503553,36896769,37486593,37552129,37683201,37748737,41418753,65601537,69337090,71827457,71892994,78381057,78512129,78708737,78774273,80084993,91357185,93585410,98369537,98697217,98893825,98959361,101515265,143065093,152174593,152240129,158007297,158138369,158400515,158466052,159842305,173801473,176619522],"wav":[31719425,31784961,37879809,37945345,78839809,83230721,99221505,110428161,158531585,163315713],"worker":[34144257,34275329,69140481,77856769,96927745,157351937],"written":[46006274,50200577,50266113,50331649,69599233,73662465,81133569,83230721,105578497,110362625,161218562,163315713,163381249],"writes":[50200577,50266113,50331649,75104259,163315715],"wraps":[69271553,156893185],"wish":[69599233,163381249],"wheather":[77725697,95813633,157155329],"wrapuptime":[80609281,103219205,160694273],"weight":[92012549,146014217,174456837],"wink":[93454338,151912450,175898626],"writeonly":[96796673,96862209,96927745,101318657,101711873,102039553,146341889]}

1
docs/fti/FTI_120.json Normal file
View file

@ -0,0 +1 @@
{"xmlfilepath":[42008582],"xml":[69402625,160104449],"xxxxxx":[69599237,84672513,115474433,164757510]}

1
docs/fti/FTI_121.json Normal file
View file

@ -0,0 +1 @@
{"yes":[786433,1114113,45744129,69664770,84672513,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,115605505,138018817,164757505,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165378,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521],"yellow":[86507521,93454337,121307137,151781377,168820737,175898625]}

1
docs/fti/FTI_122.json Normal file
View file

@ -0,0 +1 @@
{"zapappi":[196609],"zap":[786437,1703937,1769473,3014657,6291457,6356993,54657025,54788097,54919169,55050242,69599240,69664773,76218369,76283905,76349441,76414978,84738049,84803585,84869121,84934657,85065729,93454339,115867649,115998721,116129793,116260865,116457473,151781377,151846913,151912449,164823043,164888579,164954115,165019652,165085187,165150722,168755201,168820737,170917889,175833089,175898628,176619525],"zapshowchannelsevent":[786434,6160385,6291458,27000835,64487431,69599233,69664770,93454339,151781378,151846914,151912450,165085186,174784513,175833089,175898634,176619522,180355077],"zapshowchannels":[786433,6291461,85000193,116326401,165085185,176619521],"zapshowchannelsaction":[786434,6291457,6356993,18546691,55115780,55181318,69599234,69664770,85000195,116326402,163184641,165085194,175833090,175898626,176619522],"zapshowchannelscomplete":[786433,6356997,176619521],"zapshowchannelscompleteevent":[786433,6356994,26935299,64421895,69599233,69664770,93388803,165085186,174784513,175833098,176619521,180289541],"zapshowchannelseventhandler":[6291463,69533697,180355078],"zapshowchannelscompleteeventhandler":[6356999,69533697,180289542],"zapdialoffhookaction":[18284547,54591495,54657033,69599234,76218374,84738051,115736578,115802114,115867650,163119105,164823052],"zapdndoffaction":[18350083,54722567,54788104,69599233,76283910,84803587,115933186,115998722,163119105,164888587],"zapdndonaction":[18415619,54853639,54919176,69599235,76349446,84869123,116064258,116129794,163119105,164888577,164954124],"zaphangupaction":[18481155,54984711,55050248,69599234,76414982,84934659,116195330,116260866,163119105,165019660],"zaptransferaction":[18612227,55246854,69599234,85065731,116391938,116457474,163119105,165150730],"zapchannel":[54657030,54788102,54919174,55050246,84738049,84803585,84869121,84934657,85065729,115867653,115998725,116129797,116260869,116457477,164823041,164888577,164954113,165019649,165150721],"zapdialoffhook":[84738049,115736577,164823041],"zapdndoff":[84803585,115933185,164888577],"zapdndon":[84869121,116064257,164954113],"zaphangup":[84934657,116195329,165019649],"zaptransfer":[85065729,116391937,165150721],"zapata":[93454337,151846913,175898625],"zero":[93585409,152633345,176619521]}

1
docs/fti/FTI_97.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_98.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_99.json Normal file

File diff suppressed because one or more lines are too long

1
docs/fti/FTI_Files.json Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,2 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Version History</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="version, history" /><meta name="Microsoft.Help.Id" content="100303f2-3dd8-401b-a594-579aae2a939c" /><meta name="Description" content="The topics in this section describe the various changes made to the [TODO: Project Title] over the life of the project." /><meta name="Microsoft.Help.ContentType" content="Concepts" /><meta name="BrandingAware" content="true" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">AsterNet Class Library (Sandcastle documentation)<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!"></a><a data-tochassubtree="true" href="79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm" title="AsterNet Class Library (Sandcastle documentation)" tocid="roottoc">AsterNet Class Library (Sandcastle documentation)</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!"></a><a data-tochassubtree="true" href="100303f2-3dd8-401b-a594-579aae2a939c.htm" title="Version History" tocid="100303f2-3dd8-401b-a594-579aae2a939c">Version History</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm" title="Version 1.0.0.0" tocid="d9cb48f8-c21b-4dbb-96d8-c726593f257e">Version 1.0.0.0</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize"><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize"></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="logoColumn"><img src="../icons/Help.png" /></td><td class="titleColumn">Version History</td></tr></table><span class="introStyle"></span><div class="introduction"><p>The topics in this section describe the various changes made to the [TODO: Project Title] over the
life of the project.</p></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Version History</span></div><div id="ID0RBSection" class="collapsibleSection"><p>Select a version below to see a description of its changes.</p><ul><li><p><a href="d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm">Version 1.0.0.0</a></p></li><li><p><span class="nolink">[3ceb3e8a-c84e-4f2a-8e83-b67870ba79f9]</span></p></li></ul></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID1RBSection" class="collapsibleSection"><h4 class="subHeading">Other Resources</h4><div class="seeAlsoStyle"><a href="79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm">Welcome</a></div></div></div></div><div id="pageFooter" class="pageFooter" /></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show more