├── .gitignore ├── .travis.yml ├── Asterisk.2013 ├── Asterisk.2013.sln ├── Asterisk.2013.vssscc ├── Asterisk.NET.Test │ └── Asterisk.NET.Test │ │ ├── AsterNET.Test.csproj │ │ ├── Asterisk.NET.Test.csproj.vspscc │ │ ├── CustomIVR.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── fastagi-mapping.resx ├── Asterisk.NET.WinForm │ ├── AsterNET.WinForm.csproj │ ├── Asterisk.NET.WinForm.csproj.vspscc │ ├── FormMain.Designer.cs │ ├── FormMain.cs │ ├── FormMain.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config ├── Asterisk.NET │ ├── AsterNET.csproj │ ├── Asterisk.NET.csproj.vspscc │ ├── Common.cs │ ├── FastAGI │ │ ├── AGIChannel.cs │ │ ├── AGIConnectionHandler.cs │ │ ├── AGIReader.cs │ │ ├── AGIReply.cs │ │ ├── AGIRequest.cs │ │ ├── AGIScript.cs │ │ ├── AGIWriter.cs │ │ ├── AsteriskFastAGI.cs │ │ ├── Command │ │ │ ├── AGICommand.cs │ │ │ ├── AnswerCommand.cs │ │ │ ├── ChannelStatusCommand.cs │ │ │ ├── ControlStreamFileCommand.cs │ │ │ ├── DatabaseDelCommand.cs │ │ │ ├── DatabaseDelTreeCommand.cs │ │ │ ├── DatabaseGetCommand.cs │ │ │ ├── DatabasePutCommand.cs │ │ │ ├── ExecCommand.cs │ │ │ ├── GetDataCommand.cs │ │ │ ├── GetFullVariableCommand.cs │ │ │ ├── GetOptionCommand.cs │ │ │ ├── GetVariableCommand.cs │ │ │ ├── HangupCommand.cs │ │ │ ├── NoopCommand.cs │ │ │ ├── ReceiveCharCommand.cs │ │ │ ├── ReceiveTextCommand.cs │ │ │ ├── RecordFileCommand.cs │ │ │ ├── SayAlphaCommand.cs │ │ │ ├── SayDateTimeCommand.cs │ │ │ ├── SayDigitsCommand.cs │ │ │ ├── SayNumberCommand.cs │ │ │ ├── SayPhoneticCommand.cs │ │ │ ├── SayTimeCommand.cs │ │ │ ├── SendImageCommand.cs │ │ │ ├── SendTextCommand.cs │ │ │ ├── SetAutoHangupCommand.cs │ │ │ ├── SetCallerIdCommand.cs │ │ │ ├── SetContextCommand.cs │ │ │ ├── SetExtensionCommand.cs │ │ │ ├── SetMusicOffCommand.cs │ │ │ ├── SetMusicOnCommand.cs │ │ │ ├── SetPriorityCommand.cs │ │ │ ├── SetVariableCommand.cs │ │ │ ├── StreamFileCommand.cs │ │ │ ├── TDDModeCommand.cs │ │ │ ├── VerboseCommand.cs │ │ │ └── WaitForDigitCommand.cs │ │ ├── Exceptions │ │ │ ├── AGIException.cs │ │ │ ├── AGIHangupException.cs │ │ │ ├── AGINetworkException.cs │ │ │ ├── InvalidCommandSyntaxException.cs │ │ │ └── InvalidOrUnknownCommandException.cs │ │ ├── IMappingStrategy.cs │ │ ├── MappingStrategies │ │ │ ├── GeneralMappingStrategy.cs │ │ │ └── ResourceMappingStrategy.cs │ │ ├── MappingStrategy.cs │ │ └── Script │ │ │ └── AGINoAction.cs │ ├── Helper.cs │ ├── IO │ │ ├── ServerSocket.cs │ │ └── SocketConnection.cs │ ├── IParseSupport.cs │ ├── Logger.cs │ ├── Manager │ │ ├── Action │ │ │ ├── AGIAction.cs │ │ │ ├── AOCMessageAction.cs │ │ │ ├── AbsoluteTimeoutAction.cs │ │ │ ├── AgentCallbackLoginAction.cs │ │ │ ├── AgentLogoffAction.cs │ │ │ ├── AgentsAction.cs │ │ │ ├── AtxferAction.cs │ │ │ ├── BlindTransferAction.cs │ │ │ ├── BridgeAction.cs │ │ │ ├── ChallengeAction.cs │ │ │ ├── ChangeMonitorAction.cs │ │ │ ├── CommandAction.cs │ │ │ ├── ConfbridgeKickAction.cs │ │ │ ├── ConfbridgeListAction.cs │ │ │ ├── ConfbridgeListRoomsAction.cs │ │ │ ├── ConfbridgeLockAction.cs │ │ │ ├── ConfbridgeMuteAction.cs │ │ │ ├── ConfbridgeSetSingleVideoSrcAction.cs │ │ │ ├── ConfbridgeStartRecordAction.cs │ │ │ ├── ConfbridgeStopRecordAction.cs │ │ │ ├── ConfbridgeUnlockAction.cs │ │ │ ├── ConfbridgeUnmuteAction.cs │ │ │ ├── CoreSettingsAction.cs │ │ │ ├── CoreShowChannelsAction.cs │ │ │ ├── CoreStatusAction.cs │ │ │ ├── CreateConfigAction.cs │ │ │ ├── DBDelAction.cs │ │ │ ├── DBDelTreeAction.cs │ │ │ ├── DBGetAction.cs │ │ │ ├── DBPutAction.cs │ │ │ ├── EventsAction.cs │ │ │ ├── ExtensionStateAction.cs │ │ │ ├── FilterAction.cs │ │ │ ├── GetConfigAction.cs │ │ │ ├── GetVarAction.cs │ │ │ ├── HangupAction.cs │ │ │ ├── ListCommandsAction.cs │ │ │ ├── LoginAction.cs │ │ │ ├── LogoffAction.cs │ │ │ ├── MailboxCountAction.cs │ │ │ ├── MailboxStatusAction.cs │ │ │ ├── ManagerAction.cs │ │ │ ├── ManagerActionEvent.cs │ │ │ ├── ManagerActionResponse.cs │ │ │ ├── ModuleLoadAction.cs │ │ │ ├── MonitorAction.cs │ │ │ ├── OriginateAction.cs │ │ │ ├── ParkAction.cs │ │ │ ├── ParkedCallsAction.cs │ │ │ ├── PingAction.cs │ │ │ ├── ProxyAction.cs │ │ │ ├── QueueAddAction.cs │ │ │ ├── QueueLogAction.cs │ │ │ ├── QueuePauseAction.cs │ │ │ ├── QueuePenaltyAction.cs │ │ │ ├── QueueReloadAction.cs │ │ │ ├── QueueRemoveAction.cs │ │ │ ├── QueueResetAction.cs │ │ │ ├── QueueRuleAction.cs │ │ │ ├── QueueStatusAction.cs │ │ │ ├── QueueSummaryAction.cs │ │ │ ├── RedirectAction.cs │ │ │ ├── ReloadAction.cs │ │ │ ├── SIPPeersAction.cs │ │ │ ├── SIPShowPeerAction.cs │ │ │ ├── SetCDRUserFieldAction.cs │ │ │ ├── SetVarAction.cs │ │ │ ├── StatusAction.cs │ │ │ ├── StopMonitorAction.cs │ │ │ ├── UpdateConfigAction.cs │ │ │ ├── ZapDNDOffAction.cs │ │ │ ├── ZapDNDOnAction.cs │ │ │ ├── ZapDialOffhookAction.cs │ │ │ ├── ZapHangupAction.cs │ │ │ ├── ZapShowChannelsAction.cs │ │ │ └── ZapTransferAction.cs │ │ ├── AsteriskVersion.cs │ │ ├── Documentation │ │ │ └── Asterisk-1.6.2.24 │ │ │ │ ├── AMI Commands.txt │ │ │ │ └── AMI Events.txt │ │ ├── Event │ │ │ ├── AGIExecEvent.cs │ │ │ ├── AbstractAgentEvent.cs │ │ │ ├── AbstractAgentVariables.cs │ │ │ ├── AbstractChannelEvent.cs │ │ │ ├── AbstractConfbridgeEvent.cs │ │ │ ├── AbstractMeetmeEvent.cs │ │ │ ├── AbstractParkedCallEvent.cs │ │ │ ├── AbstractQueueMemberEvent.cs │ │ │ ├── AgentCallbackLoginEvent.cs │ │ │ ├── AgentCallbackLogoffEvent.cs │ │ │ ├── AgentCalledEvent.cs │ │ │ ├── AgentCompleteEvent.cs │ │ │ ├── AgentConnectEvent.cs │ │ │ ├── AgentDumpEvent.cs │ │ │ ├── AgentLoginEvent.cs │ │ │ ├── AgentLogoffEvent.cs │ │ │ ├── AgentRingNoAnswerEvent.cs │ │ │ ├── AgentsCompleteEvent.cs │ │ │ ├── AgentsEvent.cs │ │ │ ├── AlarmClearEvent.cs │ │ │ ├── AlarmEvent.cs │ │ │ ├── AsyncAGIEvent.cs │ │ │ ├── AttendedTransferEvent.cs │ │ │ ├── BlindTransferEvent.cs │ │ │ ├── BridgeActivityEvent.cs │ │ │ ├── BridgeCreateEvent.cs │ │ │ ├── BridgeDestroyEvent.cs │ │ │ ├── BridgeEnterEvent.cs │ │ │ ├── BridgeEvent.cs │ │ │ ├── BridgeLeaveEvent.cs │ │ │ ├── BridgeStateEvent.cs │ │ │ ├── CdrEvent.cs │ │ │ ├── ChallengeResponseFailedEvent.cs │ │ │ ├── ChallengeSentEvent.cs │ │ │ ├── ChannelReloadEvent.cs │ │ │ ├── ChannelUpdateEvent.cs │ │ │ ├── ConfbridgeEndEvent.cs │ │ │ ├── ConfbridgeJoinEvent.cs │ │ │ ├── ConfbridgeLeaveEvent.cs │ │ │ ├── ConfbridgeListCompleteEvent.cs │ │ │ ├── ConfbridgeListEvent.cs │ │ │ ├── ConfbridgeListRoomsCompleteEvent.cs │ │ │ ├── ConfbridgeListRoomsEvent.cs │ │ │ ├── ConfbridgeStartEvent.cs │ │ │ ├── ConfbridgeTalkingEvent.cs │ │ │ ├── ConnectEvent.cs │ │ │ ├── ConnectionStateEvent.cs │ │ │ ├── DBGetResponseEvent.cs │ │ │ ├── DNDStateEvent.cs │ │ │ ├── DTMFBeginEvent.cs │ │ │ ├── DTMFEndEvent.cs │ │ │ ├── DTMFEvent.cs │ │ │ ├── DeviceStateChangeEvent.cs │ │ │ ├── DialBeginEvent.cs │ │ │ ├── DialEndEvent.cs │ │ │ ├── DialEvent.cs │ │ │ ├── DisconnectEvent.cs │ │ │ ├── ExtensionStatusEvent.cs │ │ │ ├── FailedACLEvent.cs │ │ │ ├── FaxReceivedEvent.cs │ │ │ ├── HangupEvent.cs │ │ │ ├── HoldEvent.cs │ │ │ ├── HoldedCallEvent.cs │ │ │ ├── InvalidAccountIDEvent.cs │ │ │ ├── JabberEvent.cs │ │ │ ├── JitterBufStatsEvent.cs │ │ │ ├── JoinEvent.cs │ │ │ ├── LeaveEvent.cs │ │ │ ├── LinkEvent.cs │ │ │ ├── LogChannelEvent.cs │ │ │ ├── ManagerEvent.cs │ │ │ ├── MasqueradeEvent.cs │ │ │ ├── MeetmeEndEvent.cs │ │ │ ├── MeetmeJoinEvent.cs │ │ │ ├── MeetmeLeaveEvent.cs │ │ │ ├── MeetmeMuteEvent.cs │ │ │ ├── MeetmeStopTalkingEvent.cs │ │ │ ├── MeetmeTalkRequestEvent.cs │ │ │ ├── MeetmeTalkingEvent.cs │ │ │ ├── MessageWaitingEvent.cs │ │ │ ├── MobileStatusEvent.cs │ │ │ ├── ModuleLoadReportEvent.cs │ │ │ ├── MonitorStartEvent.cs │ │ │ ├── MonitorStopEvent.cs │ │ │ ├── MusicOnHoldEvent.cs │ │ │ ├── MusicOnHoldStartEvent.cs │ │ │ ├── MusicOnHoldStopEvent.cs │ │ │ ├── NewAccountCodeEvent.cs │ │ │ ├── NewCallerIdEvent.cs │ │ │ ├── NewChannelEvent.cs │ │ │ ├── NewExtenEvent.cs │ │ │ ├── NewStateEvent.cs │ │ │ ├── OriginateResponseEvent.cs │ │ │ ├── PRIEvent.cs │ │ │ ├── ParkedCallEvent.cs │ │ │ ├── ParkedCallGiveUpEvent.cs │ │ │ ├── ParkedCallTimeOutEvent.cs │ │ │ ├── ParkedCallsCompleteEvent.cs │ │ │ ├── PeerEntryEvent.cs │ │ │ ├── PeerStatusEvent.cs │ │ │ ├── PeerlistCompleteEvent.cs │ │ │ ├── QueueCallerAbandonEvent.cs │ │ │ ├── QueueCallerJoinEvent.cs │ │ │ ├── QueueCallerLeaveEvent.cs │ │ │ ├── QueueEntryEvent.cs │ │ │ ├── QueueEvent.cs │ │ │ ├── QueueMemberAddedEvent.cs │ │ │ ├── QueueMemberEvent.cs │ │ │ ├── QueueMemberPauseEvent.cs │ │ │ ├── QueueMemberPausedEvent.cs │ │ │ ├── QueueMemberPenaltyEvent.cs │ │ │ ├── QueueMemberRemovedEvent.cs │ │ │ ├── QueueMemberRinginuseEvent.cs │ │ │ ├── QueueMemberStatusEvent.cs │ │ │ ├── QueueParamsEvent.cs │ │ │ ├── QueueStatusCompleteEvent.cs │ │ │ ├── QueueSummaryEvent.cs │ │ │ ├── RTCPReceivedEvent.cs │ │ │ ├── RTCPSentEvent.cs │ │ │ ├── RTPReceiverStatEvent.cs │ │ │ ├── RTPSenderStatEvent.cs │ │ │ ├── RegistryEvent.cs │ │ │ ├── ReloadEvent.cs │ │ │ ├── RenameEvent.cs │ │ │ ├── ResponseEvent.cs │ │ │ ├── ShowDialPlanCompleteEvent.cs │ │ │ ├── ShutdownEvent.cs │ │ │ ├── StatusCompleteEvent.cs │ │ │ ├── StatusEvent.cs │ │ │ ├── SuccessfulAuthEvent.cs │ │ │ ├── TransferEvent.cs │ │ │ ├── UnholdEvent.cs │ │ │ ├── UnknownEvent.cs │ │ │ ├── UnlinkEvent.cs │ │ │ ├── UnparkedCallEvent.cs │ │ │ ├── UserEvent.cs │ │ │ ├── VarSet.cs │ │ │ ├── ZapShowChannelsCompleteEvent.cs │ │ │ └── ZapShowChannelsEvent.cs │ │ ├── Exceptions │ │ │ ├── AuthenticationFailedException.cs │ │ │ ├── EventTimeoutException.cs │ │ │ ├── ManagerException.cs │ │ │ └── TimeoutException.cs │ │ ├── IActionVariable.cs │ │ ├── IResponseHandler.cs │ │ ├── ManagerConnection.cs │ │ ├── ManagerReader.cs │ │ ├── Originate.cs │ │ ├── Response │ │ │ ├── ChallengeResponse.cs │ │ │ ├── CommandResponse.cs │ │ │ ├── ExtensionStateResponse.cs │ │ │ ├── GetConfigResponse.cs │ │ │ ├── MailboxCountResponse.cs │ │ │ ├── MailboxStatusResponse.cs │ │ │ ├── ManagerError.cs │ │ │ ├── ManagerResponse.cs │ │ │ └── OriginateResponse.cs │ │ ├── ResponseEventHandler.cs │ │ ├── ResponseEvents.cs │ │ ├── ResponseHandler.cs │ │ └── ResponseHandlers │ │ │ └── TaskResponseHandler.cs │ └── Util │ │ ├── MD5Support.cs │ │ ├── ThreadClass.cs │ │ ├── ThreadPool.cs │ │ └── ThreadTask.cs ├── ChangeLog.txt ├── Documentation │ ├── Content │ │ ├── VersionHistory │ │ │ ├── VersionHistory.aml │ │ │ ├── v1.0.0.0.aml │ │ │ └── v1.0.1.0.aml │ │ └── Welcome.aml │ ├── ContentLayout.content │ ├── Documentation.shfbproj │ └── icons │ │ └── Help.png └── Package.nuspec ├── LICENSE ├── README.md └── docs ├── SearchHelp.aspx ├── SearchHelp.inc.php ├── SearchHelp.php ├── Web.Config ├── WebKI.xml ├── WebTOC.xml ├── fti ├── FTI_100.json ├── FTI_101.json ├── FTI_102.json ├── FTI_103.json ├── FTI_104.json ├── FTI_105.json ├── FTI_106.json ├── FTI_107.json ├── FTI_108.json ├── FTI_109.json ├── FTI_110.json ├── FTI_111.json ├── FTI_112.json ├── FTI_113.json ├── FTI_114.json ├── FTI_115.json ├── FTI_116.json ├── FTI_117.json ├── FTI_118.json ├── FTI_119.json ├── FTI_120.json ├── FTI_121.json ├── FTI_122.json ├── FTI_97.json ├── FTI_98.json ├── FTI_99.json └── FTI_Files.json ├── html ├── 100303f2-3dd8-401b-a594-579aae2a939c.htm ├── 79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm ├── E_AsterNET_Manager_ManagerConnection_AGIExec.htm ├── E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm ├── E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm ├── E_AsterNET_Manager_ManagerConnection_AgentCalled.htm ├── E_AsterNET_Manager_ManagerConnection_AgentComplete.htm ├── E_AsterNET_Manager_ManagerConnection_AgentConnect.htm ├── E_AsterNET_Manager_ManagerConnection_AgentDump.htm ├── E_AsterNET_Manager_ManagerConnection_AgentLogin.htm ├── E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm ├── E_AsterNET_Manager_ManagerConnection_Agents.htm ├── E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm ├── E_AsterNET_Manager_ManagerConnection_Alarm.htm ├── E_AsterNET_Manager_ManagerConnection_AlarmClear.htm ├── E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm ├── E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm ├── E_AsterNET_Manager_ManagerConnection_Bridge.htm ├── E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm ├── E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm ├── E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm ├── E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm ├── E_AsterNET_Manager_ManagerConnection_Cdr.htm ├── E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm ├── E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm ├── E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm ├── E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm ├── E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm ├── E_AsterNET_Manager_ManagerConnection_ConnectionState.htm ├── E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm ├── E_AsterNET_Manager_ManagerConnection_DNDState.htm ├── E_AsterNET_Manager_ManagerConnection_DTMF.htm ├── E_AsterNET_Manager_ManagerConnection_Dial.htm ├── E_AsterNET_Manager_ManagerConnection_DialBegin.htm ├── E_AsterNET_Manager_ManagerConnection_DialEnd.htm ├── E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm ├── E_AsterNET_Manager_ManagerConnection_FailedACL.htm ├── E_AsterNET_Manager_ManagerConnection_Hangup.htm ├── E_AsterNET_Manager_ManagerConnection_Hold.htm ├── E_AsterNET_Manager_ManagerConnection_HoldedCall.htm ├── E_AsterNET_Manager_ManagerConnection_Join.htm ├── E_AsterNET_Manager_ManagerConnection_Leave.htm ├── E_AsterNET_Manager_ManagerConnection_Link.htm ├── E_AsterNET_Manager_ManagerConnection_LogChannel.htm ├── E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm ├── E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm ├── E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm ├── E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm ├── E_AsterNET_Manager_ManagerConnection_NewCallerId.htm ├── E_AsterNET_Manager_ManagerConnection_NewChannel.htm ├── E_AsterNET_Manager_ManagerConnection_NewExten.htm ├── E_AsterNET_Manager_ManagerConnection_NewState.htm ├── E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm ├── E_AsterNET_Manager_ManagerConnection_ParkedCall.htm ├── E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm ├── E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm ├── E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm ├── E_AsterNET_Manager_ManagerConnection_PeerEntry.htm ├── E_AsterNET_Manager_ManagerConnection_PeerStatus.htm ├── E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm ├── E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm ├── E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm ├── E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm ├── E_AsterNET_Manager_ManagerConnection_QueueEntry.htm ├── E_AsterNET_Manager_ManagerConnection_QueueMember.htm ├── E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm ├── E_AsterNET_Manager_ManagerConnection_QueueMemberPause.htm ├── E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm ├── E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm ├── E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm ├── E_AsterNET_Manager_ManagerConnection_QueueParams.htm ├── E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm ├── E_AsterNET_Manager_ManagerConnection_Registry.htm ├── E_AsterNET_Manager_ManagerConnection_Rename.htm ├── E_AsterNET_Manager_ManagerConnection_Status.htm ├── E_AsterNET_Manager_ManagerConnection_StatusComplete.htm ├── E_AsterNET_Manager_ManagerConnection_Transfer.htm ├── E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm ├── E_AsterNET_Manager_ManagerConnection_Unhold.htm ├── E_AsterNET_Manager_ManagerConnection_Unlink.htm ├── E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm ├── E_AsterNET_Manager_ManagerConnection_UserEvents.htm ├── E_AsterNET_Manager_ManagerConnection_VarSet.htm ├── E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm ├── E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm ├── Events_T_AsterNET_FastAGI_AGIException.htm ├── Events_T_AsterNET_FastAGI_AGIHangupException.htm ├── Events_T_AsterNET_FastAGI_AGINetworkException.htm ├── Events_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm ├── Events_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm ├── Events_T_AsterNET_Manager_AuthenticationFailedException.htm ├── Events_T_AsterNET_Manager_EventTimeoutException.htm ├── Events_T_AsterNET_Manager_ManagerConnection.htm ├── Events_T_AsterNET_Manager_ManagerException.htm ├── Events_T_AsterNET_Manager_TimeoutException.htm ├── F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTES_PATTERN.htm ├── F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTE_PATTERN.htm ├── F_AsterNET_Common_AGI_BIND_ADDRESS.htm ├── F_AsterNET_Common_AGI_BIND_PORT.htm ├── F_AsterNET_Common_AGI_DEFAULT_MAX_DIGITS.htm ├── F_AsterNET_Common_AGI_DEFAULT_RESOURCE_BUNDLE_NAME.htm ├── F_AsterNET_Common_AGI_DEFAULT_TIMEOUT.htm ├── F_AsterNET_Common_AGI_END_OF_PROPER_USAGE.htm ├── F_AsterNET_Common_AGI_PARAMETER_PATTERN.htm ├── F_AsterNET_Common_AGI_PARENTHESIS_PATTERN.htm ├── F_AsterNET_Common_AGI_POOL_SIZE.htm ├── F_AsterNET_Common_AGI_RESULT_PATTERN.htm ├── F_AsterNET_Common_AGI_SCRIPT_PATTERN.htm ├── F_AsterNET_Common_AGI_STATUS_PATTERN.htm ├── F_AsterNET_Common_AGI_SYNOPSIS_PATTERN.htm ├── F_AsterNET_Common_ASTERISK_VERSION.htm ├── F_AsterNET_Common_CultureInfoEn.htm ├── F_AsterNET_Common_DEFAULT_HOSTNAME.htm ├── F_AsterNET_Common_DEFAULT_PORT.htm ├── F_AsterNET_Common_INTERNAL_ACTION_ID_DELIMITER.htm ├── F_AsterNET_Common_LINE_SEPARATOR.htm ├── F_AsterNET_Common_MINUS_SEPARATOR.htm ├── F_AsterNET_Common_RESPONSE_KEY_VALUE_SEPARATOR.htm ├── F_AsterNET_Common_SHOW_VERSION_FILES_PATTERN.htm ├── F_AsterNET_Common_VAR_DELIMITER.htm ├── F_AsterNET_FastAGI_AsteriskFastAGI_SC511_CAUSES_EXCEPTION.htm ├── F_AsterNET_FastAGI_AsteriskFastAGI_SCHANGUP_CAUSES_EXCEPTION.htm ├── F_AsterNET_Manager_Action_CommandAction_command.htm ├── F_AsterNET_Manager_Action_SetVarAction_channel.htm ├── F_AsterNET_Manager_Action_SetVarAction_varName.htm ├── F_AsterNET_Manager_Action_SetVarAction_varValue.htm ├── F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_APPEND.htm ├── F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELCAT.htm ├── F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELETE.htm ├── F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_NEWCAT.htm ├── F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_RENAMECAT.htm ├── F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_UPDATE.htm ├── F_AsterNET_Manager_Event_RenameEvent_newName.htm ├── F_AsterNET_Manager_Event_RenameEvent_oldName.htm ├── F_AsterNET_Manager_ManagerConnection_UseASyncEvents.htm ├── F_AsterNET_Manager_ManagerConnection_VAR_DELIMITER.htm ├── F_AsterNET_Manager_Response_CommandResponse_result.htm ├── F_AsterNET_Manager_Response_ManagerResponse_attributes.htm ├── Fields_T_AsterNET_Common.htm ├── Fields_T_AsterNET_FastAGI_AsteriskFastAGI.htm ├── Fields_T_AsterNET_Manager_Action_CommandAction.htm ├── Fields_T_AsterNET_Manager_Action_SetVarAction.htm ├── Fields_T_AsterNET_Manager_Action_UpdateConfigAction.htm ├── Fields_T_AsterNET_Manager_Event_RenameEvent.htm ├── Fields_T_AsterNET_Manager_ManagerConnection.htm ├── Fields_T_AsterNET_Manager_Response_ChallengeResponse.htm ├── Fields_T_AsterNET_Manager_Response_CommandResponse.htm ├── Fields_T_AsterNET_Manager_Response_ExtensionStateResponse.htm ├── Fields_T_AsterNET_Manager_Response_GetConfigResponse.htm ├── Fields_T_AsterNET_Manager_Response_MailboxCountResponse.htm ├── Fields_T_AsterNET_Manager_Response_MailboxStatusResponse.htm ├── Fields_T_AsterNET_Manager_Response_ManagerError.htm ├── Fields_T_AsterNET_Manager_Response_ManagerResponse.htm ├── M_AsterNET_FastAGI_AGIChannel_SendCommand.htm ├── M_AsterNET_FastAGI_AGIChannel__ctor.htm ├── M_AsterNET_FastAGI_AGIChannel__ctor_1.htm ├── M_AsterNET_FastAGI_AGIConnectionHandler_Run.htm ├── M_AsterNET_FastAGI_AGIConnectionHandler__ctor.htm ├── M_AsterNET_FastAGI_AGIException__ctor.htm ├── M_AsterNET_FastAGI_AGIException__ctor_1.htm ├── M_AsterNET_FastAGI_AGIException__ctor_2.htm ├── M_AsterNET_FastAGI_AGIHangupException__ctor.htm ├── M_AsterNET_FastAGI_AGINetworkException__ctor.htm ├── M_AsterNET_FastAGI_AGIReader_ReadReply.htm ├── M_AsterNET_FastAGI_AGIReader_ReadRequest.htm ├── M_AsterNET_FastAGI_AGIReader__ctor.htm ├── M_AsterNET_FastAGI_AGIReply_GetAttribute.htm ├── M_AsterNET_FastAGI_AGIReply_GetResult.htm ├── M_AsterNET_FastAGI_AGIReply_GetStatus.htm ├── M_AsterNET_FastAGI_AGIReply_GetSynopsis.htm ├── M_AsterNET_FastAGI_AGIReply_GetUsage.htm ├── M_AsterNET_FastAGI_AGIReply_ToString.htm ├── M_AsterNET_FastAGI_AGIReply__ctor.htm ├── M_AsterNET_FastAGI_AGIReply__ctor_1.htm ├── M_AsterNET_FastAGI_AGIRequest_Parameter.htm ├── M_AsterNET_FastAGI_AGIRequest_ParameterMap.htm ├── M_AsterNET_FastAGI_AGIRequest_ParameterValues.htm ├── M_AsterNET_FastAGI_AGIRequest_ToString.htm ├── M_AsterNET_FastAGI_AGIRequest__ctor.htm ├── M_AsterNET_FastAGI_AGIScript_Answer.htm ├── M_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm ├── M_AsterNET_FastAGI_AGIScript_ControlStreamFile_1.htm ├── M_AsterNET_FastAGI_AGIScript_ControlStreamFile_2.htm ├── M_AsterNET_FastAGI_AGIScript_ControlStreamFile_3.htm ├── M_AsterNET_FastAGI_AGIScript_DatabaseDel.htm ├── M_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm ├── M_AsterNET_FastAGI_AGIScript_DatabaseDelTree_1.htm ├── M_AsterNET_FastAGI_AGIScript_DatabaseGet.htm ├── M_AsterNET_FastAGI_AGIScript_DatabasePut.htm ├── M_AsterNET_FastAGI_AGIScript_Exec.htm ├── M_AsterNET_FastAGI_AGIScript_Exec_1.htm ├── M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm ├── M_AsterNET_FastAGI_AGIScript_GetData.htm ├── M_AsterNET_FastAGI_AGIScript_GetData_1.htm ├── M_AsterNET_FastAGI_AGIScript_GetData_2.htm ├── M_AsterNET_FastAGI_AGIScript_GetFullVariable.htm ├── M_AsterNET_FastAGI_AGIScript_GetFullVariable_1.htm ├── M_AsterNET_FastAGI_AGIScript_GetOption.htm ├── M_AsterNET_FastAGI_AGIScript_GetOption_1.htm ├── M_AsterNET_FastAGI_AGIScript_GetVariable.htm ├── M_AsterNET_FastAGI_AGIScript_Hangup.htm ├── M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm ├── M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm ├── M_AsterNET_FastAGI_AGIScript_RecordFile.htm ├── M_AsterNET_FastAGI_AGIScript_RecordFile_1.htm ├── M_AsterNET_FastAGI_AGIScript_SayAlpha.htm ├── M_AsterNET_FastAGI_AGIScript_SayAlpha_1.htm ├── M_AsterNET_FastAGI_AGIScript_SayDateTime.htm ├── M_AsterNET_FastAGI_AGIScript_SayDateTime_1.htm ├── M_AsterNET_FastAGI_AGIScript_SayDateTime_2.htm ├── M_AsterNET_FastAGI_AGIScript_SayDateTime_3.htm ├── M_AsterNET_FastAGI_AGIScript_SayDigits.htm ├── M_AsterNET_FastAGI_AGIScript_SayDigits_1.htm ├── M_AsterNET_FastAGI_AGIScript_SayNumber.htm ├── M_AsterNET_FastAGI_AGIScript_SayNumber_1.htm ├── M_AsterNET_FastAGI_AGIScript_SayPhonetic.htm ├── M_AsterNET_FastAGI_AGIScript_SayPhonetic_1.htm ├── M_AsterNET_FastAGI_AGIScript_SayTime.htm ├── M_AsterNET_FastAGI_AGIScript_SayTime_1.htm ├── M_AsterNET_FastAGI_AGIScript_Service.htm ├── M_AsterNET_FastAGI_AGIScript_SetAutoHangup.htm ├── M_AsterNET_FastAGI_AGIScript_SetCallerId.htm ├── M_AsterNET_FastAGI_AGIScript_SetContext.htm ├── M_AsterNET_FastAGI_AGIScript_SetExtension.htm ├── M_AsterNET_FastAGI_AGIScript_SetPriority.htm ├── M_AsterNET_FastAGI_AGIScript_SetPriority_1.htm ├── M_AsterNET_FastAGI_AGIScript_SetVariable.htm ├── M_AsterNET_FastAGI_AGIScript_StopMusicOnHold.htm ├── M_AsterNET_FastAGI_AGIScript_StreamFile.htm ├── M_AsterNET_FastAGI_AGIScript_StreamFile_1.htm ├── M_AsterNET_FastAGI_AGIScript_Verbose.htm ├── M_AsterNET_FastAGI_AGIScript_WaitForDigit.htm ├── M_AsterNET_FastAGI_AGIScript__ctor.htm ├── M_AsterNET_FastAGI_AGIWriter_SendCommand.htm ├── M_AsterNET_FastAGI_AGIWriter__ctor.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI_Start.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI_Stop.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI__ctor_1.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI__ctor_2.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI__ctor_3.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI__ctor_4.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI__ctor_5.htm ├── M_AsterNET_FastAGI_AsteriskFastAGI__ctor_6.htm ├── M_AsterNET_FastAGI_Command_AGICommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_AGICommand_EscapeAndQuote.htm ├── M_AsterNET_FastAGI_Command_AGICommand_ToString.htm ├── M_AsterNET_FastAGI_Command_AGICommand__ctor.htm ├── M_AsterNET_FastAGI_Command_AnswerCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_AnswerCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_ChannelStatusCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_ControlStreamFileCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm ├── M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits_1.htm ├── M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_2.htm ├── M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_3.htm ├── M_AsterNET_FastAGI_Command_DatabaseDelCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_DatabaseGetCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_DatabaseGetCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_DatabasePutCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_DatabasePutCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_ExecCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_ExecCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_ExecCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_GetDataCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_GetDataCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_GetDataCommand__ctor_2.htm ├── M_AsterNET_FastAGI_Command_GetFullVariableCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_GetOptionCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_GetOptionCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_GetVariableCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_GetVariableCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_HangupCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_HangupCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_HangupCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_NoopCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_NoopCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_ReceiveCharCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_ReceiveTextCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_RecordFileCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_RecordFileCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SayAlphaCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SayDateTimeCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_2.htm ├── M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_3.htm ├── M_AsterNET_FastAGI_Command_SayDigitsCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SayNumberCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SayNumberCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SayPhoneticCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SayTimeCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SayTimeCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SendImageCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SendImageCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SendTextCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SendTextCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SetAutoHangupCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SetAutoHangupCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SetCallerIdCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SetCallerIdCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SetContextCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SetContextCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SetExtensionCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SetExtensionCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SetMusicOffCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SetMusicOffCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SetMusicOnCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SetPriorityCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_SetVariableCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_SetVariableCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_StreamFileCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_1.htm ├── M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_2.htm ├── M_AsterNET_FastAGI_Command_TDDModeCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_TDDModeCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_VerboseCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_VerboseCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_WaitForDigitCommand_BuildCommand.htm ├── M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm ├── M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor_1.htm ├── M_AsterNET_FastAGI_IMappingStrategy_DetermineScript.htm ├── M_AsterNET_FastAGI_IMappingStrategy_Load.htm ├── M_AsterNET_FastAGI_InvalidCommandSyntaxException__ctor.htm ├── M_AsterNET_FastAGI_InvalidOrUnknownCommandException__ctor.htm ├── M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_DetermineScript.htm ├── M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_Load.htm ├── M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm ├── M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_1.htm ├── M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_2.htm ├── M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_DetermineScript.htm ├── M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_Load.htm ├── M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm ├── M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor_1.htm ├── M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_LoadMappings.htm ├── M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_SaveMappings.htm ├── M_AsterNET_FastAGI_MappingStrategies_ScriptMapping__ctor.htm ├── M_AsterNET_FastAGI_MappingStrategy_DetermineScript.htm ├── M_AsterNET_FastAGI_MappingStrategy_Load.htm ├── M_AsterNET_FastAGI_MappingStrategy__ctor.htm ├── M_AsterNET_FastAGI_MappingStrategy__ctor_1.htm ├── M_AsterNET_IO_ServerSocket_Accept.htm ├── M_AsterNET_IO_ServerSocket_Close.htm ├── M_AsterNET_IO_ServerSocket__ctor.htm ├── M_AsterNET_IO_SocketConnection_Close.htm ├── M_AsterNET_IO_SocketConnection_ReadLine.htm ├── M_AsterNET_IO_SocketConnection_Write.htm ├── M_AsterNET_IO_SocketConnection_WriteEx.htm ├── M_AsterNET_IO_SocketConnection__ctor.htm ├── M_AsterNET_Logger_Debug.htm ├── M_AsterNET_Logger_Debug_1.htm ├── M_AsterNET_Logger_Debug_2.htm ├── M_AsterNET_Logger_Debug_3.htm ├── M_AsterNET_Logger_Error.htm ├── M_AsterNET_Logger_Error_1.htm ├── M_AsterNET_Logger_Error_2.htm ├── M_AsterNET_Logger_Error_3.htm ├── M_AsterNET_Logger_Info.htm ├── M_AsterNET_Logger_Info_1.htm ├── M_AsterNET_Logger_Info_2.htm ├── M_AsterNET_Logger_Info_3.htm ├── M_AsterNET_Logger_Instance.htm ├── M_AsterNET_Logger_IsVisible.htm ├── M_AsterNET_Logger_Visible.htm ├── M_AsterNET_Logger_Visible_1.htm ├── M_AsterNET_Logger_Warning.htm ├── M_AsterNET_Logger_Warning_1.htm ├── M_AsterNET_Logger_Warning_2.htm ├── M_AsterNET_Logger_Warning_3.htm ├── M_AsterNET_Logger__ctor.htm ├── M_AsterNET_Manager_Action_AOCMessageAction__ctor.htm ├── M_AsterNET_Manager_Action_AOCMessageAction__ctor_1.htm ├── M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm ├── M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor_1.htm ├── M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm ├── M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_1.htm ├── M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_2.htm ├── M_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm ├── M_AsterNET_Manager_Action_AgentLogoffAction__ctor_1.htm ├── M_AsterNET_Manager_Action_AgentLogoffAction__ctor_2.htm ├── M_AsterNET_Manager_Action_AgentsAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_AgentsAction__ctor.htm ├── M_AsterNET_Manager_Action_AgiAction__ctor.htm ├── M_AsterNET_Manager_Action_AtxferAction__ctor.htm ├── M_AsterNET_Manager_Action_AtxferAction__ctor_1.htm ├── M_AsterNET_Manager_Action_BridgeAction__ctor.htm ├── M_AsterNET_Manager_Action_BridgeAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ChallengeAction__ctor.htm ├── M_AsterNET_Manager_Action_ChallengeAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm ├── M_AsterNET_Manager_Action_ChangeMonitorAction__ctor_1.htm ├── M_AsterNET_Manager_Action_CommandAction__ctor.htm ├── M_AsterNET_Manager_Action_CommandAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ConfbridgeListAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_ConfbridgeListAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeListRoomsAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_ConfbridgeListRoomsAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm ├── M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor_1.htm ├── M_AsterNET_Manager_Action_CoreSettingsAction__ctor.htm ├── M_AsterNET_Manager_Action_CoreShowChannelsAction__ctor.htm ├── M_AsterNET_Manager_Action_CoreStatusAction__ctor.htm ├── M_AsterNET_Manager_Action_CreateConfigAction__ctor.htm ├── M_AsterNET_Manager_Action_CreateConfigAction__ctor_1.htm ├── M_AsterNET_Manager_Action_DBDelAction__ctor.htm ├── M_AsterNET_Manager_Action_DBDelAction__ctor_1.htm ├── M_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm ├── M_AsterNET_Manager_Action_DBDelTreeAction__ctor_1.htm ├── M_AsterNET_Manager_Action_DBGetAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_DBGetAction__ctor.htm ├── M_AsterNET_Manager_Action_DBGetAction__ctor_1.htm ├── M_AsterNET_Manager_Action_DBPutAction__ctor.htm ├── M_AsterNET_Manager_Action_DBPutAction__ctor_1.htm ├── M_AsterNET_Manager_Action_EventsAction__ctor.htm ├── M_AsterNET_Manager_Action_EventsAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ExtensionStateAction__ctor.htm ├── M_AsterNET_Manager_Action_GetConfigAction_ActionCompleteResponseClass.htm ├── M_AsterNET_Manager_Action_GetConfigAction__ctor.htm ├── M_AsterNET_Manager_Action_GetConfigAction__ctor_1.htm ├── M_AsterNET_Manager_Action_GetVarAction__ctor.htm ├── M_AsterNET_Manager_Action_GetVarAction__ctor_1.htm ├── M_AsterNET_Manager_Action_GetVarAction__ctor_2.htm ├── M_AsterNET_Manager_Action_HangupAction__ctor.htm ├── M_AsterNET_Manager_Action_HangupAction__ctor_1.htm ├── M_AsterNET_Manager_Action_LoginAction__ctor.htm ├── M_AsterNET_Manager_Action_LoginAction__ctor_1.htm ├── M_AsterNET_Manager_Action_LoginAction__ctor_2.htm ├── M_AsterNET_Manager_Action_LoginAction__ctor_3.htm ├── M_AsterNET_Manager_Action_LogoffAction__ctor.htm ├── M_AsterNET_Manager_Action_MailboxCountAction__ctor.htm ├── M_AsterNET_Manager_Action_MailboxCountAction__ctor_1.htm ├── M_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm ├── M_AsterNET_Manager_Action_MailboxStatusAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ManagerActionEvent_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_ManagerActionEvent__ctor.htm ├── M_AsterNET_Manager_Action_ManagerActionResponse_ActionCompleteResponseClass.htm ├── M_AsterNET_Manager_Action_ManagerActionResponse__ctor.htm ├── M_AsterNET_Manager_Action_ManagerAction_ToString.htm ├── M_AsterNET_Manager_Action_ManagerAction__ctor.htm ├── M_AsterNET_Manager_Action_MonitorAction__ctor.htm ├── M_AsterNET_Manager_Action_MonitorAction__ctor_1.htm ├── M_AsterNET_Manager_Action_MonitorAction__ctor_2.htm ├── M_AsterNET_Manager_Action_MonitorAction__ctor_3.htm ├── M_AsterNET_Manager_Action_OriginateAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_OriginateAction_GetVariable.htm ├── M_AsterNET_Manager_Action_OriginateAction_GetVariables.htm ├── M_AsterNET_Manager_Action_OriginateAction_SetVariable.htm ├── M_AsterNET_Manager_Action_OriginateAction_SetVariables.htm ├── M_AsterNET_Manager_Action_OriginateAction__ctor.htm ├── M_AsterNET_Manager_Action_ParkAction__ctor.htm ├── M_AsterNET_Manager_Action_ParkAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ParkedCallsAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_ParkedCallsAction__ctor.htm ├── M_AsterNET_Manager_Action_PingAction__ctor.htm ├── M_AsterNET_Manager_Action_ProxyAction__ctor.htm ├── M_AsterNET_Manager_Action_QueueAddAction__ctor.htm ├── M_AsterNET_Manager_Action_QueueAddAction__ctor_1.htm ├── M_AsterNET_Manager_Action_QueueAddAction__ctor_2.htm ├── M_AsterNET_Manager_Action_QueueAddAction__ctor_3.htm ├── M_AsterNET_Manager_Action_QueueLogAction__ctor.htm ├── M_AsterNET_Manager_Action_QueueLogAction__ctor_1.htm ├── M_AsterNET_Manager_Action_QueuePauseAction__ctor.htm ├── M_AsterNET_Manager_Action_QueuePauseAction__ctor_1.htm ├── M_AsterNET_Manager_Action_QueuePauseAction__ctor_2.htm ├── M_AsterNET_Manager_Action_QueuePauseAction__ctor_3.htm ├── M_AsterNET_Manager_Action_QueuePauseAction__ctor_4.htm ├── M_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm ├── M_AsterNET_Manager_Action_QueuePenaltyAction__ctor_1.htm ├── M_AsterNET_Manager_Action_QueueReloadAction__ctor.htm ├── M_AsterNET_Manager_Action_QueueReloadAction__ctor_1.htm ├── M_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm ├── M_AsterNET_Manager_Action_QueueRemoveAction__ctor_1.htm ├── M_AsterNET_Manager_Action_QueueResetAction__ctor.htm ├── M_AsterNET_Manager_Action_QueueResetAction__ctor_1.htm ├── M_AsterNET_Manager_Action_QueueRuleAction__ctor.htm ├── M_AsterNET_Manager_Action_QueueRuleAction__ctor_1.htm ├── M_AsterNET_Manager_Action_QueueStatusAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_QueueStatusAction__ctor.htm ├── M_AsterNET_Manager_Action_RedirectAction__ctor.htm ├── M_AsterNET_Manager_Action_RedirectAction__ctor_1.htm ├── M_AsterNET_Manager_Action_RedirectAction__ctor_2.htm ├── M_AsterNET_Manager_Action_SIPPeersAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_SIPPeersAction__ctor.htm ├── M_AsterNET_Manager_Action_SIPShowPeerAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm ├── M_AsterNET_Manager_Action_SIPShowPeerAction__ctor_1.htm ├── M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm ├── M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_1.htm ├── M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_2.htm ├── M_AsterNET_Manager_Action_SetVarAction__ctor.htm ├── M_AsterNET_Manager_Action_SetVarAction__ctor_1.htm ├── M_AsterNET_Manager_Action_SetVarAction__ctor_2.htm ├── M_AsterNET_Manager_Action_StatusAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_StatusAction__ctor.htm ├── M_AsterNET_Manager_Action_StopMonitorAction__ctor.htm ├── M_AsterNET_Manager_Action_StopMonitorAction__ctor_1.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction_ActionCompleteResponseClass.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_1.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_2.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_3.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_4.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_5.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction__ctor_1.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction__ctor_2.htm ├── M_AsterNET_Manager_Action_UpdateConfigAction__ctor_3.htm ├── M_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm ├── M_AsterNET_Manager_Action_ZapDNDOffAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm ├── M_AsterNET_Manager_Action_ZapDNDOnAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm ├── M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ZapHangupAction__ctor.htm ├── M_AsterNET_Manager_Action_ZapHangupAction__ctor_1.htm ├── M_AsterNET_Manager_Action_ZapShowChannelsAction_ActionCompleteEventClass.htm ├── M_AsterNET_Manager_Action_ZapShowChannelsAction__ctor.htm ├── M_AsterNET_Manager_Action_ZapTransferAction__ctor.htm ├── M_AsterNET_Manager_AuthenticationFailedException__ctor.htm ├── M_AsterNET_Manager_AuthenticationFailedException__ctor_1.htm ├── M_AsterNET_Manager_EventTimeoutException__ctor.htm ├── M_AsterNET_Manager_Event_AGIExecEvent__ctor.htm ├── M_AsterNET_Manager_Event_AbstractAgentEvent__ctor.htm ├── M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariable.htm ├── M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariables.htm ├── M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariable.htm ├── M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariables.htm ├── M_AsterNET_Manager_Event_AbstractAgentVariables__ctor.htm ├── M_AsterNET_Manager_Event_AbstractChannelEvent__ctor.htm ├── M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm ├── M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor_1.htm ├── M_AsterNET_Manager_Event_AbstractMeetmeEvent__ctor.htm ├── M_AsterNET_Manager_Event_AbstractParkedCallEvent__ctor.htm ├── M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentCallbackLoginEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentCallbackLogoffEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentCalledEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentConnectEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentDumpEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentLoginEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentLogoffEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentsCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_AgentsEvent__ctor.htm ├── M_AsterNET_Manager_Event_AlarmClearEvent__ctor.htm ├── M_AsterNET_Manager_Event_AlarmEvent__ctor.htm ├── M_AsterNET_Manager_Event_AsyncAGIEvent__ctor.htm ├── M_AsterNET_Manager_Event_AttendedTransferEvent__ctor.htm ├── M_AsterNET_Manager_Event_BlindTransferEvent__ctor.htm ├── M_AsterNET_Manager_Event_BridgeActivityEvent__ctor.htm ├── M_AsterNET_Manager_Event_BridgeCreateEvent__ctor.htm ├── M_AsterNET_Manager_Event_BridgeDestroyEvent__ctor.htm ├── M_AsterNET_Manager_Event_BridgeEnterEvent__ctor.htm ├── M_AsterNET_Manager_Event_BridgeEvent_ParseSpecial.htm ├── M_AsterNET_Manager_Event_BridgeEvent__ctor.htm ├── M_AsterNET_Manager_Event_BridgeLeaveEvent__ctor.htm ├── M_AsterNET_Manager_Event_BridgeStateEvent__ctor.htm ├── M_AsterNET_Manager_Event_CdrEvent__ctor.htm ├── M_AsterNET_Manager_Event_ChannelReloadEvent__ctor.htm ├── M_AsterNET_Manager_Event_ChannelUpdateEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeEndEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeJoinEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeLeaveEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeListCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeListEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeListRoomsEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeStartEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConfbridgeTalkingEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConnectEvent__ctor.htm ├── M_AsterNET_Manager_Event_ConnectionStateEvent__ctor.htm ├── M_AsterNET_Manager_Event_DBGetResponseEvent__ctor.htm ├── M_AsterNET_Manager_Event_DNDStateEvent__ctor.htm ├── M_AsterNET_Manager_Event_DTMFEvent__ctor.htm ├── M_AsterNET_Manager_Event_DialBeginEvent__ctor.htm ├── M_AsterNET_Manager_Event_DialEndEvent__ctor.htm ├── M_AsterNET_Manager_Event_DialEvent__ctor.htm ├── M_AsterNET_Manager_Event_DisconnectEvent__ctor.htm ├── M_AsterNET_Manager_Event_ExtensionStatusEvent__ctor.htm ├── M_AsterNET_Manager_Event_FailedACLEvent__ctor.htm ├── M_AsterNET_Manager_Event_FailedACLEvent__ctor_1.htm ├── M_AsterNET_Manager_Event_FaxReceivedEvent__ctor.htm ├── M_AsterNET_Manager_Event_HangupEvent__ctor.htm ├── M_AsterNET_Manager_Event_HoldEvent__ctor.htm ├── M_AsterNET_Manager_Event_HoldedCallEvent__ctor.htm ├── M_AsterNET_Manager_Event_JabberEvent__ctor.htm ├── M_AsterNET_Manager_Event_JitterBufStatsEvent__ctor.htm ├── M_AsterNET_Manager_Event_JoinEvent__ctor.htm ├── M_AsterNET_Manager_Event_LeaveEvent__ctor.htm ├── M_AsterNET_Manager_Event_LinkEvent__ctor.htm ├── M_AsterNET_Manager_Event_LogChannelEvent__ctor.htm ├── M_AsterNET_Manager_Event_ManagerEvent_Parse.htm ├── M_AsterNET_Manager_Event_ManagerEvent_ParseSpecial.htm ├── M_AsterNET_Manager_Event_ManagerEvent_ToString.htm ├── M_AsterNET_Manager_Event_ManagerEvent__ctor.htm ├── M_AsterNET_Manager_Event_ManagerEvent__ctor_1.htm ├── M_AsterNET_Manager_Event_MeetmeEndEvent__ctor.htm ├── M_AsterNET_Manager_Event_MeetmeJoinEvent__ctor.htm ├── M_AsterNET_Manager_Event_MeetmeLeaveEvent__ctor.htm ├── M_AsterNET_Manager_Event_MeetmeMuteEvent__ctor.htm ├── M_AsterNET_Manager_Event_MeetmeStopTalkingEvent__ctor.htm ├── M_AsterNET_Manager_Event_MeetmeTalkRequestEvent__ctor.htm ├── M_AsterNET_Manager_Event_MeetmeTalkingEvent__ctor.htm ├── M_AsterNET_Manager_Event_MessageWaitingEvent__ctor.htm ├── M_AsterNET_Manager_Event_MobileStatusEvent__ctor.htm ├── M_AsterNET_Manager_Event_ModuleLoadReportEvent__ctor.htm ├── M_AsterNET_Manager_Event_MonitorStartEvent__ctor.htm ├── M_AsterNET_Manager_Event_MonitorStopEvent__ctor.htm ├── M_AsterNET_Manager_Event_NewAccountCodeEvent__ctor.htm ├── M_AsterNET_Manager_Event_NewCallerIdEvent__ctor.htm ├── M_AsterNET_Manager_Event_NewChannelEvent__ctor.htm ├── M_AsterNET_Manager_Event_NewExtenEvent__ctor.htm ├── M_AsterNET_Manager_Event_NewStateEvent__ctor.htm ├── M_AsterNET_Manager_Event_OriginateResponseEvent__ctor.htm ├── M_AsterNET_Manager_Event_PRIEvent__ctor.htm ├── M_AsterNET_Manager_Event_ParkedCallEvent__ctor.htm ├── M_AsterNET_Manager_Event_ParkedCallGiveUpEvent__ctor.htm ├── M_AsterNET_Manager_Event_ParkedCallTimeOutEvent__ctor.htm ├── M_AsterNET_Manager_Event_ParkedCallsCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_PeerEntryEvent__ctor.htm ├── M_AsterNET_Manager_Event_PeerStatusEvent__ctor.htm ├── M_AsterNET_Manager_Event_PeerlistCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueCallerAbandonEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueCallerJoinEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueCallerLeaveEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueEntryEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueMemberEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueMemberRinginuseEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueParamsEvent__ctor.htm ├── M_AsterNET_Manager_Event_QueueStatusCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_RTCPReceivedEvent__ctor.htm ├── M_AsterNET_Manager_Event_RTCPSentEvent__ctor.htm ├── M_AsterNET_Manager_Event_RTPReceiverStatEvent__ctor.htm ├── M_AsterNET_Manager_Event_RTPSenderStatEvent__ctor.htm ├── M_AsterNET_Manager_Event_RegistryEvent__ctor.htm ├── M_AsterNET_Manager_Event_ReloadEvent__ctor.htm ├── M_AsterNET_Manager_Event_RenameEvent__ctor.htm ├── M_AsterNET_Manager_Event_ResponseEvent__ctor.htm ├── M_AsterNET_Manager_Event_ShowDialPlanCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_ShutdownEvent__ctor.htm ├── M_AsterNET_Manager_Event_StatusCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_StatusEvent__ctor.htm ├── M_AsterNET_Manager_Event_TransferEvent__ctor.htm ├── M_AsterNET_Manager_Event_UnholdEvent__ctor.htm ├── M_AsterNET_Manager_Event_UnknownEvent__ctor.htm ├── M_AsterNET_Manager_Event_UnlinkEvent__ctor.htm ├── M_AsterNET_Manager_Event_UnparkedCallEvent__ctor.htm ├── M_AsterNET_Manager_Event_UserEvent_Parse.htm ├── M_AsterNET_Manager_Event_UserEvent__ctor.htm ├── M_AsterNET_Manager_Event_VarSetEvent__ctor.htm ├── M_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent__ctor.htm ├── M_AsterNET_Manager_Event_ZapShowChannelsEvent__ctor.htm ├── M_AsterNET_Manager_IResponseHandler_Free.htm ├── M_AsterNET_Manager_IResponseHandler_HandleResponse.htm ├── M_AsterNET_Manager_ManagerConnection_BuildAction.htm ├── M_AsterNET_Manager_ManagerConnection_BuildAction_1.htm ├── M_AsterNET_Manager_ManagerConnection_GetProtocolIdentifier.htm ├── M_AsterNET_Manager_ManagerConnection_IsConnected.htm ├── M_AsterNET_Manager_ManagerConnection_Login.htm ├── M_AsterNET_Manager_ManagerConnection_Login_1.htm ├── M_AsterNET_Manager_ManagerConnection_Logoff.htm ├── M_AsterNET_Manager_ManagerConnection_RegisterUserEventClass.htm ├── M_AsterNET_Manager_ManagerConnection_SendAction.htm ├── M_AsterNET_Manager_ManagerConnection_SendAction_1.htm ├── M_AsterNET_Manager_ManagerConnection_SendAction_2.htm ├── M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm ├── M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction_1.htm ├── M_AsterNET_Manager_ManagerConnection__ctor.htm ├── M_AsterNET_Manager_ManagerConnection__ctor_1.htm ├── M_AsterNET_Manager_ManagerConnection__ctor_2.htm ├── M_AsterNET_Manager_ManagerConnection_connect.htm ├── M_AsterNET_Manager_ManagerConnection_determineVersion.htm ├── M_AsterNET_Manager_ManagerException__ctor.htm ├── M_AsterNET_Manager_ManagerException__ctor_1.htm ├── M_AsterNET_Manager_ManagerReader__ctor.htm ├── M_AsterNET_Manager_Originate_GetVariable.htm ├── M_AsterNET_Manager_Originate_GetVariables.htm ├── M_AsterNET_Manager_Originate_SetVariable.htm ├── M_AsterNET_Manager_Originate_SetVariables.htm ├── M_AsterNET_Manager_Originate__ctor.htm ├── M_AsterNET_Manager_ResponseEventHandler_Free.htm ├── M_AsterNET_Manager_ResponseEventHandler_HandleEvent.htm ├── M_AsterNET_Manager_ResponseEventHandler_HandleResponse.htm ├── M_AsterNET_Manager_ResponseEventHandler__ctor.htm ├── M_AsterNET_Manager_ResponseEvents_AddEvent.htm ├── M_AsterNET_Manager_ResponseEvents__ctor.htm ├── M_AsterNET_Manager_ResponseHandler_Free.htm ├── M_AsterNET_Manager_ResponseHandler_HandleResponse.htm ├── M_AsterNET_Manager_ResponseHandler__ctor.htm ├── M_AsterNET_Manager_Response_ChallengeResponse__ctor.htm ├── M_AsterNET_Manager_Response_CommandResponse__ctor.htm ├── M_AsterNET_Manager_Response_ExtensionStateResponse__ctor.htm ├── M_AsterNET_Manager_Response_GetConfigResponse_Lines.htm ├── M_AsterNET_Manager_Response_GetConfigResponse__ctor.htm ├── M_AsterNET_Manager_Response_MailboxCountResponse__ctor.htm ├── M_AsterNET_Manager_Response_MailboxStatusResponse__ctor.htm ├── M_AsterNET_Manager_Response_ManagerError__ctor.htm ├── M_AsterNET_Manager_Response_ManagerError__ctor_1.htm ├── M_AsterNET_Manager_Response_ManagerResponse_GetAttribute.htm ├── M_AsterNET_Manager_Response_ManagerResponse_IsSuccess.htm ├── M_AsterNET_Manager_Response_ManagerResponse_Parse.htm ├── M_AsterNET_Manager_Response_ManagerResponse_ParseSpecial.htm ├── M_AsterNET_Manager_Response_ManagerResponse_ToString.htm ├── M_AsterNET_Manager_Response_ManagerResponse__ctor.htm ├── M_AsterNET_Manager_Response_ManagerResponse__ctor_1.htm ├── M_AsterNET_Manager_Response_OriginateResponse_CalcDuration.htm ├── M_AsterNET_Manager_Response_OriginateResponse_ToString.htm ├── M_AsterNET_Manager_Response_OriginateResponse__ctor.htm ├── M_AsterNET_Manager_TimeoutException__ctor.htm ├── M_AsterNET_Util_MD5Support_GetInstance.htm ├── M_AsterNET_Util_MD5Support_GetInstance_1.htm ├── M_AsterNET_Util_MD5Support_Update.htm ├── M_AsterNET_Util_MD5Support__ctor.htm ├── M_AsterNET_Util_ThreadClass_Interrupt.htm ├── M_AsterNET_Util_ThreadClass_Run.htm ├── M_AsterNET_Util_ThreadClass_Start.htm ├── M_AsterNET_Util_ThreadClass__ctor.htm ├── M_AsterNET_Util_ThreadClass__ctor_1.htm ├── M_AsterNET_Util_ThreadClass__ctor_2.htm ├── M_AsterNET_Util_ThreadClass__ctor_3.htm ├── M_AsterNET_Util_ThreadPool_AddJob.htm ├── M_AsterNET_Util_ThreadPool_Shutdown.htm ├── M_AsterNET_Util_ThreadPool__ctor.htm ├── Methods_T_AsterNET_FastAGI_AGIChannel.htm ├── Methods_T_AsterNET_FastAGI_AGIConnectionHandler.htm ├── Methods_T_AsterNET_FastAGI_AGIException.htm ├── Methods_T_AsterNET_FastAGI_AGIHangupException.htm ├── Methods_T_AsterNET_FastAGI_AGINetworkException.htm ├── Methods_T_AsterNET_FastAGI_AGIReader.htm ├── Methods_T_AsterNET_FastAGI_AGIReply.htm ├── Methods_T_AsterNET_FastAGI_AGIRequest.htm ├── Methods_T_AsterNET_FastAGI_AGIScript.htm ├── Methods_T_AsterNET_FastAGI_AGIWriter.htm ├── Methods_T_AsterNET_FastAGI_AsteriskFastAGI.htm ├── Methods_T_AsterNET_FastAGI_Command_AGICommand.htm ├── Methods_T_AsterNET_FastAGI_Command_AnswerCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_ExecCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_GetDataCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_GetOptionCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_GetVariableCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_HangupCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_NoopCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_RecordFileCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SayNumberCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SayTimeCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SendImageCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SendTextCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SetContextCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_SetVariableCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_StreamFileCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_TDDModeCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_VerboseCommand.htm ├── Methods_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm ├── Methods_T_AsterNET_FastAGI_IMappingStrategy.htm ├── Methods_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm ├── Methods_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm ├── Methods_T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm ├── Methods_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm ├── Methods_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm ├── Methods_T_AsterNET_FastAGI_MappingStrategy.htm ├── Methods_T_AsterNET_IO_ServerSocket.htm ├── Methods_T_AsterNET_IO_SocketConnection.htm ├── Methods_T_AsterNET_Logger.htm ├── Methods_T_AsterNET_Manager_Action_AOCMessageAction.htm ├── Methods_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm ├── Methods_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm ├── Methods_T_AsterNET_Manager_Action_AgentLogoffAction.htm ├── Methods_T_AsterNET_Manager_Action_AgentsAction.htm ├── Methods_T_AsterNET_Manager_Action_AgiAction.htm ├── Methods_T_AsterNET_Manager_Action_AtxferAction.htm ├── Methods_T_AsterNET_Manager_Action_BridgeAction.htm ├── Methods_T_AsterNET_Manager_Action_ChallengeAction.htm ├── Methods_T_AsterNET_Manager_Action_ChangeMonitorAction.htm ├── Methods_T_AsterNET_Manager_Action_CommandAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeListAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm ├── Methods_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm ├── Methods_T_AsterNET_Manager_Action_CoreSettingsAction.htm ├── Methods_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm ├── Methods_T_AsterNET_Manager_Action_CoreStatusAction.htm ├── Methods_T_AsterNET_Manager_Action_CreateConfigAction.htm ├── Methods_T_AsterNET_Manager_Action_DBDelAction.htm ├── Methods_T_AsterNET_Manager_Action_DBDelTreeAction.htm ├── Methods_T_AsterNET_Manager_Action_DBGetAction.htm ├── Methods_T_AsterNET_Manager_Action_DBPutAction.htm ├── Methods_T_AsterNET_Manager_Action_EventsAction.htm ├── Methods_T_AsterNET_Manager_Action_ExtensionStateAction.htm ├── Methods_T_AsterNET_Manager_Action_GetConfigAction.htm ├── Methods_T_AsterNET_Manager_Action_GetVarAction.htm ├── Methods_T_AsterNET_Manager_Action_HangupAction.htm ├── Methods_T_AsterNET_Manager_Action_LoginAction.htm ├── Methods_T_AsterNET_Manager_Action_LogoffAction.htm ├── Methods_T_AsterNET_Manager_Action_MailboxCountAction.htm ├── Methods_T_AsterNET_Manager_Action_MailboxStatusAction.htm ├── Methods_T_AsterNET_Manager_Action_ManagerAction.htm ├── Methods_T_AsterNET_Manager_Action_ManagerActionEvent.htm ├── Methods_T_AsterNET_Manager_Action_ManagerActionResponse.htm ├── Methods_T_AsterNET_Manager_Action_MonitorAction.htm ├── Methods_T_AsterNET_Manager_Action_OriginateAction.htm ├── Methods_T_AsterNET_Manager_Action_ParkAction.htm ├── Methods_T_AsterNET_Manager_Action_ParkedCallsAction.htm ├── Methods_T_AsterNET_Manager_Action_PingAction.htm ├── Methods_T_AsterNET_Manager_Action_ProxyAction.htm ├── Methods_T_AsterNET_Manager_Action_QueueAddAction.htm ├── Methods_T_AsterNET_Manager_Action_QueueLogAction.htm ├── Methods_T_AsterNET_Manager_Action_QueuePauseAction.htm ├── Methods_T_AsterNET_Manager_Action_QueuePenaltyAction.htm ├── Methods_T_AsterNET_Manager_Action_QueueReloadAction.htm ├── Methods_T_AsterNET_Manager_Action_QueueRemoveAction.htm ├── Methods_T_AsterNET_Manager_Action_QueueResetAction.htm ├── Methods_T_AsterNET_Manager_Action_QueueRuleAction.htm ├── Methods_T_AsterNET_Manager_Action_QueueStatusAction.htm ├── Methods_T_AsterNET_Manager_Action_RedirectAction.htm ├── Methods_T_AsterNET_Manager_Action_SIPPeersAction.htm ├── Methods_T_AsterNET_Manager_Action_SIPShowPeerAction.htm ├── Methods_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm ├── Methods_T_AsterNET_Manager_Action_SetVarAction.htm ├── Methods_T_AsterNET_Manager_Action_StatusAction.htm ├── Methods_T_AsterNET_Manager_Action_StopMonitorAction.htm ├── Methods_T_AsterNET_Manager_Action_UpdateConfigAction.htm ├── Methods_T_AsterNET_Manager_Action_ZapDNDOffAction.htm ├── Methods_T_AsterNET_Manager_Action_ZapDNDOnAction.htm ├── Methods_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm ├── Methods_T_AsterNET_Manager_Action_ZapHangupAction.htm ├── Methods_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm ├── Methods_T_AsterNET_Manager_Action_ZapTransferAction.htm ├── Methods_T_AsterNET_Manager_AuthenticationFailedException.htm ├── Methods_T_AsterNET_Manager_EventTimeoutException.htm ├── Methods_T_AsterNET_Manager_Event_AGIExecEvent.htm ├── Methods_T_AsterNET_Manager_Event_AbstractAgentEvent.htm ├── Methods_T_AsterNET_Manager_Event_AbstractAgentVariables.htm ├── Methods_T_AsterNET_Manager_Event_AbstractChannelEvent.htm ├── Methods_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm ├── Methods_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm ├── Methods_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm ├── Methods_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentCalledEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentConnectEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentDumpEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentLoginEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentLogoffEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_AgentsEvent.htm ├── Methods_T_AsterNET_Manager_Event_AlarmClearEvent.htm ├── Methods_T_AsterNET_Manager_Event_AlarmEvent.htm ├── Methods_T_AsterNET_Manager_Event_AsyncAGIEvent.htm ├── Methods_T_AsterNET_Manager_Event_AttendedTransferEvent.htm ├── Methods_T_AsterNET_Manager_Event_BlindTransferEvent.htm ├── Methods_T_AsterNET_Manager_Event_BridgeActivityEvent.htm ├── Methods_T_AsterNET_Manager_Event_BridgeCreateEvent.htm ├── Methods_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm ├── Methods_T_AsterNET_Manager_Event_BridgeEnterEvent.htm ├── Methods_T_AsterNET_Manager_Event_BridgeEvent.htm ├── Methods_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm ├── Methods_T_AsterNET_Manager_Event_BridgeStateEvent.htm ├── Methods_T_AsterNET_Manager_Event_CdrEvent.htm ├── Methods_T_AsterNET_Manager_Event_ChannelReloadEvent.htm ├── Methods_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConnectEvent.htm ├── Methods_T_AsterNET_Manager_Event_ConnectionStateEvent.htm ├── Methods_T_AsterNET_Manager_Event_DBGetResponseEvent.htm ├── Methods_T_AsterNET_Manager_Event_DNDStateEvent.htm ├── Methods_T_AsterNET_Manager_Event_DTMFEvent.htm ├── Methods_T_AsterNET_Manager_Event_DialBeginEvent.htm ├── Methods_T_AsterNET_Manager_Event_DialEndEvent.htm ├── Methods_T_AsterNET_Manager_Event_DialEvent.htm ├── Methods_T_AsterNET_Manager_Event_DisconnectEvent.htm ├── Methods_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm ├── Methods_T_AsterNET_Manager_Event_FailedACLEvent.htm ├── Methods_T_AsterNET_Manager_Event_FaxReceivedEvent.htm ├── Methods_T_AsterNET_Manager_Event_HangupEvent.htm ├── Methods_T_AsterNET_Manager_Event_HoldEvent.htm ├── Methods_T_AsterNET_Manager_Event_HoldedCallEvent.htm ├── Methods_T_AsterNET_Manager_Event_JabberEvent.htm ├── Methods_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm ├── Methods_T_AsterNET_Manager_Event_JoinEvent.htm ├── Methods_T_AsterNET_Manager_Event_LeaveEvent.htm ├── Methods_T_AsterNET_Manager_Event_LinkEvent.htm ├── Methods_T_AsterNET_Manager_Event_LogChannelEvent.htm ├── Methods_T_AsterNET_Manager_Event_ManagerEvent.htm ├── Methods_T_AsterNET_Manager_Event_MeetmeEndEvent.htm ├── Methods_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm ├── Methods_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm ├── Methods_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm ├── Methods_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm ├── Methods_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm ├── Methods_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm ├── Methods_T_AsterNET_Manager_Event_MessageWaitingEvent.htm ├── Methods_T_AsterNET_Manager_Event_MobileStatusEvent.htm ├── Methods_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm ├── Methods_T_AsterNET_Manager_Event_MonitorStartEvent.htm ├── Methods_T_AsterNET_Manager_Event_MonitorStopEvent.htm ├── Methods_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm ├── Methods_T_AsterNET_Manager_Event_NewCallerIdEvent.htm ├── Methods_T_AsterNET_Manager_Event_NewChannelEvent.htm ├── Methods_T_AsterNET_Manager_Event_NewExtenEvent.htm ├── Methods_T_AsterNET_Manager_Event_NewStateEvent.htm ├── Methods_T_AsterNET_Manager_Event_OriginateResponseEvent.htm ├── Methods_T_AsterNET_Manager_Event_PRIEvent.htm ├── Methods_T_AsterNET_Manager_Event_ParkedCallEvent.htm ├── Methods_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm ├── Methods_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm ├── Methods_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_PeerEntryEvent.htm ├── Methods_T_AsterNET_Manager_Event_PeerStatusEvent.htm ├── Methods_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueEntryEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueMemberEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueParamsEvent.htm ├── Methods_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm ├── Methods_T_AsterNET_Manager_Event_RTCPSentEvent.htm ├── Methods_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm ├── Methods_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm ├── Methods_T_AsterNET_Manager_Event_RegistryEvent.htm ├── Methods_T_AsterNET_Manager_Event_ReloadEvent.htm ├── Methods_T_AsterNET_Manager_Event_RenameEvent.htm ├── Methods_T_AsterNET_Manager_Event_ResponseEvent.htm ├── Methods_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_ShutdownEvent.htm ├── Methods_T_AsterNET_Manager_Event_StatusCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_StatusEvent.htm ├── Methods_T_AsterNET_Manager_Event_TransferEvent.htm ├── Methods_T_AsterNET_Manager_Event_UnholdEvent.htm ├── Methods_T_AsterNET_Manager_Event_UnknownEvent.htm ├── Methods_T_AsterNET_Manager_Event_UnlinkEvent.htm ├── Methods_T_AsterNET_Manager_Event_UnparkedCallEvent.htm ├── Methods_T_AsterNET_Manager_Event_UserEvent.htm ├── Methods_T_AsterNET_Manager_Event_VarSetEvent.htm ├── Methods_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm ├── Methods_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm ├── Methods_T_AsterNET_Manager_IResponseHandler.htm ├── Methods_T_AsterNET_Manager_ManagerConnection.htm ├── Methods_T_AsterNET_Manager_ManagerException.htm ├── Methods_T_AsterNET_Manager_ManagerReader.htm ├── Methods_T_AsterNET_Manager_Originate.htm ├── Methods_T_AsterNET_Manager_ResponseEventHandler.htm ├── Methods_T_AsterNET_Manager_ResponseEvents.htm ├── Methods_T_AsterNET_Manager_ResponseHandler.htm ├── Methods_T_AsterNET_Manager_Response_ChallengeResponse.htm ├── Methods_T_AsterNET_Manager_Response_CommandResponse.htm ├── Methods_T_AsterNET_Manager_Response_ExtensionStateResponse.htm ├── Methods_T_AsterNET_Manager_Response_GetConfigResponse.htm ├── Methods_T_AsterNET_Manager_Response_MailboxCountResponse.htm ├── Methods_T_AsterNET_Manager_Response_MailboxStatusResponse.htm ├── Methods_T_AsterNET_Manager_Response_ManagerError.htm ├── Methods_T_AsterNET_Manager_Response_ManagerResponse.htm ├── Methods_T_AsterNET_Manager_Response_OriginateResponse.htm ├── Methods_T_AsterNET_Manager_TimeoutException.htm ├── Methods_T_AsterNET_Util_MD5Support.htm ├── Methods_T_AsterNET_Util_ThreadClass.htm ├── Methods_T_AsterNET_Util_ThreadPool.htm ├── N_AsterNET.htm ├── N_AsterNET_FastAGI.htm ├── N_AsterNET_FastAGI_Command.htm ├── N_AsterNET_FastAGI_MappingStrategies.htm ├── N_AsterNET_IO.htm ├── N_AsterNET_Manager.htm ├── N_AsterNET_Manager_Action.htm ├── N_AsterNET_Manager_Event.htm ├── N_AsterNET_Manager_Response.htm ├── N_AsterNET_Util.htm ├── Overload_AsterNET_FastAGI_AGIChannel__ctor.htm ├── Overload_AsterNET_FastAGI_AGIException__ctor.htm ├── Overload_AsterNET_FastAGI_AGIReply__ctor.htm ├── Overload_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm ├── Overload_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm ├── Overload_AsterNET_FastAGI_AGIScript_Exec.htm ├── Overload_AsterNET_FastAGI_AGIScript_GetData.htm ├── Overload_AsterNET_FastAGI_AGIScript_GetFullVariable.htm ├── Overload_AsterNET_FastAGI_AGIScript_GetOption.htm ├── Overload_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm ├── Overload_AsterNET_FastAGI_AGIScript_RecordFile.htm ├── Overload_AsterNET_FastAGI_AGIScript_SayAlpha.htm ├── Overload_AsterNET_FastAGI_AGIScript_SayDateTime.htm ├── Overload_AsterNET_FastAGI_AGIScript_SayDigits.htm ├── Overload_AsterNET_FastAGI_AGIScript_SayNumber.htm ├── Overload_AsterNET_FastAGI_AGIScript_SayPhonetic.htm ├── Overload_AsterNET_FastAGI_AGIScript_SayTime.htm ├── Overload_AsterNET_FastAGI_AGIScript_SetPriority.htm ├── Overload_AsterNET_FastAGI_AGIScript_StreamFile.htm ├── Overload_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm ├── Overload_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm ├── Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_ExecCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_HangupCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm ├── Overload_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm ├── Overload_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm ├── Overload_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm ├── Overload_AsterNET_FastAGI_MappingStrategy__ctor.htm ├── Overload_AsterNET_Logger_Debug.htm ├── Overload_AsterNET_Logger_Error.htm ├── Overload_AsterNET_Logger_Info.htm ├── Overload_AsterNET_Logger_Visible.htm ├── Overload_AsterNET_Logger_Warning.htm ├── Overload_AsterNET_Manager_Action_AOCMessageAction__ctor.htm ├── Overload_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm ├── Overload_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm ├── Overload_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm ├── Overload_AsterNET_Manager_Action_AtxferAction__ctor.htm ├── Overload_AsterNET_Manager_Action_BridgeAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ChallengeAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm ├── Overload_AsterNET_Manager_Action_CommandAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm ├── Overload_AsterNET_Manager_Action_CreateConfigAction__ctor.htm ├── Overload_AsterNET_Manager_Action_DBDelAction__ctor.htm ├── Overload_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm ├── Overload_AsterNET_Manager_Action_DBGetAction__ctor.htm ├── Overload_AsterNET_Manager_Action_DBPutAction__ctor.htm ├── Overload_AsterNET_Manager_Action_EventsAction__ctor.htm ├── Overload_AsterNET_Manager_Action_GetConfigAction__ctor.htm ├── Overload_AsterNET_Manager_Action_GetVarAction__ctor.htm ├── Overload_AsterNET_Manager_Action_HangupAction__ctor.htm ├── Overload_AsterNET_Manager_Action_LoginAction__ctor.htm ├── Overload_AsterNET_Manager_Action_MailboxCountAction__ctor.htm ├── Overload_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm ├── Overload_AsterNET_Manager_Action_MonitorAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ParkAction__ctor.htm ├── Overload_AsterNET_Manager_Action_QueueAddAction__ctor.htm ├── Overload_AsterNET_Manager_Action_QueueLogAction__ctor.htm ├── Overload_AsterNET_Manager_Action_QueuePauseAction__ctor.htm ├── Overload_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm ├── Overload_AsterNET_Manager_Action_QueueReloadAction__ctor.htm ├── Overload_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm ├── Overload_AsterNET_Manager_Action_QueueResetAction__ctor.htm ├── Overload_AsterNET_Manager_Action_QueueRuleAction__ctor.htm ├── Overload_AsterNET_Manager_Action_RedirectAction__ctor.htm ├── Overload_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm ├── Overload_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm ├── Overload_AsterNET_Manager_Action_SetVarAction__ctor.htm ├── Overload_AsterNET_Manager_Action_StopMonitorAction__ctor.htm ├── Overload_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm ├── Overload_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm ├── Overload_AsterNET_Manager_Action_ZapHangupAction__ctor.htm ├── Overload_AsterNET_Manager_AuthenticationFailedException__ctor.htm ├── Overload_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm ├── Overload_AsterNET_Manager_Event_FailedACLEvent__ctor.htm ├── Overload_AsterNET_Manager_Event_ManagerEvent__ctor.htm ├── Overload_AsterNET_Manager_ManagerConnection_BuildAction.htm ├── Overload_AsterNET_Manager_ManagerConnection_Login.htm ├── Overload_AsterNET_Manager_ManagerConnection_SendAction.htm ├── Overload_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm ├── Overload_AsterNET_Manager_ManagerConnection__ctor.htm ├── Overload_AsterNET_Manager_ManagerException__ctor.htm ├── Overload_AsterNET_Manager_Response_ManagerError__ctor.htm ├── Overload_AsterNET_Manager_Response_ManagerResponse__ctor.htm ├── Overload_AsterNET_Util_MD5Support_GetInstance.htm ├── Overload_AsterNET_Util_ThreadClass__ctor.htm ├── P_AsterNET_FastAGI_AGIChannel_LastReply.htm ├── P_AsterNET_FastAGI_AGIReply_Extra.htm ├── P_AsterNET_FastAGI_AGIReply_FirstLine.htm ├── P_AsterNET_FastAGI_AGIReply_Lines.htm ├── P_AsterNET_FastAGI_AGIReply_ResultCode.htm ├── P_AsterNET_FastAGI_AGIReply_ResultCodeAsChar.htm ├── P_AsterNET_FastAGI_AGIRequest_AccountCode.htm ├── P_AsterNET_FastAGI_AGIRequest_CallerId.htm ├── P_AsterNET_FastAGI_AGIRequest_CallerIdName.htm ├── P_AsterNET_FastAGI_AGIRequest_CallingAni2.htm ├── P_AsterNET_FastAGI_AGIRequest_CallingPres.htm ├── P_AsterNET_FastAGI_AGIRequest_CallingTns.htm ├── P_AsterNET_FastAGI_AGIRequest_CallingTon.htm ├── P_AsterNET_FastAGI_AGIRequest_Channel.htm ├── P_AsterNET_FastAGI_AGIRequest_Context.htm ├── P_AsterNET_FastAGI_AGIRequest_Dnid.htm ├── P_AsterNET_FastAGI_AGIRequest_Enhanced.htm ├── P_AsterNET_FastAGI_AGIRequest_Extension.htm ├── P_AsterNET_FastAGI_AGIRequest_Language.htm ├── P_AsterNET_FastAGI_AGIRequest_LocalAddress.htm ├── P_AsterNET_FastAGI_AGIRequest_LocalPort.htm ├── P_AsterNET_FastAGI_AGIRequest_Priority.htm ├── P_AsterNET_FastAGI_AGIRequest_Rdnis.htm ├── P_AsterNET_FastAGI_AGIRequest_RemoteAddress.htm ├── P_AsterNET_FastAGI_AGIRequest_RemotePort.htm ├── P_AsterNET_FastAGI_AGIRequest_Request.htm ├── P_AsterNET_FastAGI_AGIRequest_RequestURL.htm ├── P_AsterNET_FastAGI_AGIRequest_Script.htm ├── P_AsterNET_FastAGI_AGIRequest_Type.htm ├── P_AsterNET_FastAGI_AGIRequest_UniqueId.htm ├── P_AsterNET_FastAGI_AGIScript_Channel.htm ├── P_AsterNET_FastAGI_AsteriskFastAGI_BindPort.htm ├── P_AsterNET_FastAGI_AsteriskFastAGI_MappingStrategy.htm ├── P_AsterNET_FastAGI_AsteriskFastAGI_PoolSize.htm ├── P_AsterNET_FastAGI_AsteriskFastAGI_SocketEncoding.htm ├── P_AsterNET_FastAGI_Command_ChannelStatusCommand_Channel.htm ├── P_AsterNET_FastAGI_Command_ControlStreamFileCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_ControlStreamFileCommand_File.htm ├── P_AsterNET_FastAGI_Command_ControlStreamFileCommand_ForwardDigit.htm ├── P_AsterNET_FastAGI_Command_ControlStreamFileCommand_Offset.htm ├── P_AsterNET_FastAGI_Command_ControlStreamFileCommand_PauseDigit.htm ├── P_AsterNET_FastAGI_Command_ControlStreamFileCommand_RewindDigit.htm ├── P_AsterNET_FastAGI_Command_DatabaseDelCommand_Family.htm ├── P_AsterNET_FastAGI_Command_DatabaseDelCommand_KeyTree.htm ├── P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_Family.htm ├── P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_KeyTree.htm ├── P_AsterNET_FastAGI_Command_DatabaseGetCommand_Family.htm ├── P_AsterNET_FastAGI_Command_DatabaseGetCommand_Key.htm ├── P_AsterNET_FastAGI_Command_DatabasePutCommand_Family.htm ├── P_AsterNET_FastAGI_Command_DatabasePutCommand_Key.htm ├── P_AsterNET_FastAGI_Command_DatabasePutCommand_Value.htm ├── P_AsterNET_FastAGI_Command_ExecCommand_Application.htm ├── P_AsterNET_FastAGI_Command_ExecCommand_Options.htm ├── P_AsterNET_FastAGI_Command_GetDataCommand_File.htm ├── P_AsterNET_FastAGI_Command_GetDataCommand_MaxDigits.htm ├── P_AsterNET_FastAGI_Command_GetDataCommand_Timeout.htm ├── P_AsterNET_FastAGI_Command_GetFullVariableCommand_Channel.htm ├── P_AsterNET_FastAGI_Command_GetFullVariableCommand_Variable.htm ├── P_AsterNET_FastAGI_Command_GetOptionCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_GetOptionCommand_File.htm ├── P_AsterNET_FastAGI_Command_GetOptionCommand_Timeout.htm ├── P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm ├── P_AsterNET_FastAGI_Command_HangupCommand_Channel.htm ├── P_AsterNET_FastAGI_Command_ReceiveCharCommand_Timeout.htm ├── P_AsterNET_FastAGI_Command_ReceiveTextCommand_Timeout.htm ├── P_AsterNET_FastAGI_Command_RecordFileCommand_Beep.htm ├── P_AsterNET_FastAGI_Command_RecordFileCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_RecordFileCommand_File.htm ├── P_AsterNET_FastAGI_Command_RecordFileCommand_Format.htm ├── P_AsterNET_FastAGI_Command_RecordFileCommand_Offset.htm ├── P_AsterNET_FastAGI_Command_RecordFileCommand_Timeout.htm ├── P_AsterNET_FastAGI_Command_SayAlphaCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_SayAlphaCommand_Text.htm ├── P_AsterNET_FastAGI_Command_SayDateTimeCommand_Format.htm ├── P_AsterNET_FastAGI_Command_SayDateTimeCommand_Time.htm ├── P_AsterNET_FastAGI_Command_SayDateTimeCommand_Timezone.htm ├── P_AsterNET_FastAGI_Command_SayDateTimeCommand_getEscapeDigits.htm ├── P_AsterNET_FastAGI_Command_SayDigitsCommand_Digits.htm ├── P_AsterNET_FastAGI_Command_SayDigitsCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_SayNumberCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_SayNumberCommand_Number.htm ├── P_AsterNET_FastAGI_Command_SayPhoneticCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_SayPhoneticCommand_Text.htm ├── P_AsterNET_FastAGI_Command_SayTimeCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_SayTimeCommand_Time.htm ├── P_AsterNET_FastAGI_Command_SendImageCommand_Image.htm ├── P_AsterNET_FastAGI_Command_SendTextCommand_Text.htm ├── P_AsterNET_FastAGI_Command_SetAutoHangupCommand_Time.htm ├── P_AsterNET_FastAGI_Command_SetCallerIdCommand_CallerId.htm ├── P_AsterNET_FastAGI_Command_SetContextCommand_Context.htm ├── P_AsterNET_FastAGI_Command_SetExtensionCommand_Extension.htm ├── P_AsterNET_FastAGI_Command_SetMusicOnCommand_MusicOnHoldClass.htm ├── P_AsterNET_FastAGI_Command_SetPriorityCommand_Label.htm ├── P_AsterNET_FastAGI_Command_SetPriorityCommand_Priority.htm ├── P_AsterNET_FastAGI_Command_SetVariableCommand_Value.htm ├── P_AsterNET_FastAGI_Command_SetVariableCommand_Variable.htm ├── P_AsterNET_FastAGI_Command_StreamFileCommand_EscapeDigits.htm ├── P_AsterNET_FastAGI_Command_StreamFileCommand_File.htm ├── P_AsterNET_FastAGI_Command_StreamFileCommand_Offset.htm ├── P_AsterNET_FastAGI_Command_TDDModeCommand_Mode.htm ├── P_AsterNET_FastAGI_Command_TDDModeCommand_Timeout.htm ├── P_AsterNET_FastAGI_Command_VerboseCommand_Level.htm ├── P_AsterNET_FastAGI_Command_VerboseCommand_Message.htm ├── P_AsterNET_FastAGI_Command_WaitForDigitCommand_Timeout.htm ├── P_AsterNET_FastAGI_InvalidCommandSyntaxException_Synopsis.htm ├── P_AsterNET_FastAGI_InvalidCommandSyntaxException_Usage.htm ├── P_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_ResourceBundleName.htm ├── P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_PreLoadedAssembly.htm ├── P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptAssmebly.htm ├── P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptClass.htm ├── P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptName.htm ├── P_AsterNET_FastAGI_MappingStrategy_ResourceBundleName.htm ├── P_AsterNET_IO_SocketConnection_Encoding.htm ├── P_AsterNET_IO_SocketConnection_Initial.htm ├── P_AsterNET_IO_SocketConnection_IsConnected.htm ├── P_AsterNET_IO_SocketConnection_LocalAddress.htm ├── P_AsterNET_IO_SocketConnection_LocalPort.htm ├── P_AsterNET_IO_SocketConnection_NetworkStream.htm ├── P_AsterNET_IO_SocketConnection_RemoteAddress.htm ├── P_AsterNET_IO_SocketConnection_RemotePort.htm ├── P_AsterNET_IO_SocketConnection_TcpClient.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_Action.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_AocBillingId.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_Channel.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_ChannelPrefix.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_ChargeType.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationId.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationNumber.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_ChargingrAssociationPlan.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_CurrencyAmount.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_CurrencyMultiplier.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_CurrencyName.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_MsgType.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_TotalType.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_UnitAmount.htm ├── P_AsterNET_Manager_Action_AOCMessageAction_UnitType.htm ├── P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Action.htm ├── P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Channel.htm ├── P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Timeout.htm ├── P_AsterNET_Manager_Action_AgentCallbackLoginAction_AckCall.htm ├── P_AsterNET_Manager_Action_AgentCallbackLoginAction_Action.htm ├── P_AsterNET_Manager_Action_AgentCallbackLoginAction_Agent.htm ├── P_AsterNET_Manager_Action_AgentCallbackLoginAction_Context.htm ├── P_AsterNET_Manager_Action_AgentCallbackLoginAction_Exten.htm ├── P_AsterNET_Manager_Action_AgentCallbackLoginAction_WrapupTime.htm ├── P_AsterNET_Manager_Action_AgentLogoffAction_Action.htm ├── P_AsterNET_Manager_Action_AgentLogoffAction_Agent.htm ├── P_AsterNET_Manager_Action_AgentLogoffAction_Soft.htm ├── P_AsterNET_Manager_Action_AgentsAction_Action.htm ├── P_AsterNET_Manager_Action_AgiAction_Action.htm ├── P_AsterNET_Manager_Action_AgiAction_Channel.htm ├── P_AsterNET_Manager_Action_AgiAction_Command.htm ├── P_AsterNET_Manager_Action_AtxferAction_Action.htm ├── P_AsterNET_Manager_Action_AtxferAction_Channel.htm ├── P_AsterNET_Manager_Action_AtxferAction_Context.htm ├── P_AsterNET_Manager_Action_AtxferAction_Exten.htm ├── P_AsterNET_Manager_Action_AtxferAction_Priority.htm ├── P_AsterNET_Manager_Action_BridgeAction_Action.htm ├── P_AsterNET_Manager_Action_BridgeAction_Channel1.htm ├── P_AsterNET_Manager_Action_BridgeAction_Channel2.htm ├── P_AsterNET_Manager_Action_BridgeAction_Tone.htm ├── P_AsterNET_Manager_Action_ChallengeAction_Action.htm ├── P_AsterNET_Manager_Action_ChallengeAction_AuthType.htm ├── P_AsterNET_Manager_Action_ChangeMonitorAction_Action.htm ├── P_AsterNET_Manager_Action_ChangeMonitorAction_Channel.htm ├── P_AsterNET_Manager_Action_ChangeMonitorAction_File.htm ├── P_AsterNET_Manager_Action_CommandAction_Action.htm ├── P_AsterNET_Manager_Action_CommandAction_Command.htm ├── P_AsterNET_Manager_Action_ConfbridgeKickAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeKickAction_Channel.htm ├── P_AsterNET_Manager_Action_ConfbridgeKickAction_Conference.htm ├── P_AsterNET_Manager_Action_ConfbridgeListAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeListAction_Conference.htm ├── P_AsterNET_Manager_Action_ConfbridgeListRoomsAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeLockAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeLockAction_Conference.htm ├── P_AsterNET_Manager_Action_ConfbridgeMuteAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeMuteAction_Channel.htm ├── P_AsterNET_Manager_Action_ConfbridgeMuteAction_Conference.htm ├── P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Channel.htm ├── P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Conference.htm ├── P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Conference.htm ├── P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Conference.htm ├── P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Conference.htm ├── P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Action.htm ├── P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Channel.htm ├── P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Conference.htm ├── P_AsterNET_Manager_Action_CoreSettingsAction_Action.htm ├── P_AsterNET_Manager_Action_CoreShowChannelsAction_Action.htm ├── P_AsterNET_Manager_Action_CoreStatusAction_Action.htm ├── P_AsterNET_Manager_Action_CreateConfigAction_Action.htm ├── P_AsterNET_Manager_Action_CreateConfigAction_Filename.htm ├── P_AsterNET_Manager_Action_DBDelAction_Action.htm ├── P_AsterNET_Manager_Action_DBDelAction_Family.htm ├── P_AsterNET_Manager_Action_DBDelAction_Key.htm ├── P_AsterNET_Manager_Action_DBDelTreeAction_Action.htm ├── P_AsterNET_Manager_Action_DBDelTreeAction_Family.htm ├── P_AsterNET_Manager_Action_DBDelTreeAction_Key.htm ├── P_AsterNET_Manager_Action_DBGetAction_Action.htm ├── P_AsterNET_Manager_Action_DBGetAction_Family.htm ├── P_AsterNET_Manager_Action_DBGetAction_Key.htm ├── P_AsterNET_Manager_Action_DBPutAction_Action.htm ├── P_AsterNET_Manager_Action_DBPutAction_Family.htm ├── P_AsterNET_Manager_Action_DBPutAction_Key.htm ├── P_AsterNET_Manager_Action_DBPutAction_Val.htm ├── P_AsterNET_Manager_Action_EventsAction_Action.htm ├── P_AsterNET_Manager_Action_EventsAction_EventMask.htm ├── P_AsterNET_Manager_Action_ExtensionStateAction_Action.htm ├── P_AsterNET_Manager_Action_ExtensionStateAction_Context.htm ├── P_AsterNET_Manager_Action_ExtensionStateAction_Exten.htm ├── P_AsterNET_Manager_Action_GetConfigAction_Action.htm ├── P_AsterNET_Manager_Action_GetConfigAction_Filename.htm ├── P_AsterNET_Manager_Action_GetVarAction_Action.htm ├── P_AsterNET_Manager_Action_GetVarAction_Channel.htm ├── P_AsterNET_Manager_Action_GetVarAction_Variable.htm ├── P_AsterNET_Manager_Action_HangupAction_Action.htm ├── P_AsterNET_Manager_Action_HangupAction_Channel.htm ├── P_AsterNET_Manager_Action_LoginAction_Action.htm ├── P_AsterNET_Manager_Action_LoginAction_AuthType.htm ├── P_AsterNET_Manager_Action_LoginAction_Events.htm ├── P_AsterNET_Manager_Action_LoginAction_Key.htm ├── P_AsterNET_Manager_Action_LoginAction_Secret.htm ├── P_AsterNET_Manager_Action_LoginAction_Username.htm ├── P_AsterNET_Manager_Action_LogoffAction_Action.htm ├── P_AsterNET_Manager_Action_MailboxCountAction_Action.htm ├── P_AsterNET_Manager_Action_MailboxCountAction_Mailbox.htm ├── P_AsterNET_Manager_Action_MailboxStatusAction_Action.htm ├── P_AsterNET_Manager_Action_MailboxStatusAction_Mailbox.htm ├── P_AsterNET_Manager_Action_ManagerAction_Action.htm ├── P_AsterNET_Manager_Action_ManagerAction_ActionId.htm ├── P_AsterNET_Manager_Action_ManagerAction_ProxyKey.htm ├── P_AsterNET_Manager_Action_ManagerAction_Server.htm ├── P_AsterNET_Manager_Action_MonitorAction_Action.htm ├── P_AsterNET_Manager_Action_MonitorAction_Channel.htm ├── P_AsterNET_Manager_Action_MonitorAction_File.htm ├── P_AsterNET_Manager_Action_MonitorAction_Format.htm ├── P_AsterNET_Manager_Action_MonitorAction_Mix.htm ├── P_AsterNET_Manager_Action_OriginateAction_Account.htm ├── P_AsterNET_Manager_Action_OriginateAction_Action.htm ├── P_AsterNET_Manager_Action_OriginateAction_Application.htm ├── P_AsterNET_Manager_Action_OriginateAction_Async.htm ├── P_AsterNET_Manager_Action_OriginateAction_CallerId.htm ├── P_AsterNET_Manager_Action_OriginateAction_Channel.htm ├── P_AsterNET_Manager_Action_OriginateAction_Context.htm ├── P_AsterNET_Manager_Action_OriginateAction_Data.htm ├── P_AsterNET_Manager_Action_OriginateAction_Exten.htm ├── P_AsterNET_Manager_Action_OriginateAction_Priority.htm ├── P_AsterNET_Manager_Action_OriginateAction_Timeout.htm ├── P_AsterNET_Manager_Action_OriginateAction_Variable.htm ├── P_AsterNET_Manager_Action_ParkAction_Action.htm ├── P_AsterNET_Manager_Action_ParkAction_Channel.htm ├── P_AsterNET_Manager_Action_ParkAction_Channel2.htm ├── P_AsterNET_Manager_Action_ParkAction_Parkinglot.htm ├── P_AsterNET_Manager_Action_ParkAction_Timeout.htm ├── P_AsterNET_Manager_Action_ParkedCallsAction_Action.htm ├── P_AsterNET_Manager_Action_PingAction_Action.htm ├── P_AsterNET_Manager_Action_QueueAddAction_Action.htm ├── P_AsterNET_Manager_Action_QueueAddAction_Interface.htm ├── P_AsterNET_Manager_Action_QueueAddAction_MemberName.htm ├── P_AsterNET_Manager_Action_QueueAddAction_Paused.htm ├── P_AsterNET_Manager_Action_QueueAddAction_Penalty.htm ├── P_AsterNET_Manager_Action_QueueAddAction_Queue.htm ├── P_AsterNET_Manager_Action_QueueLogAction_Action.htm ├── P_AsterNET_Manager_Action_QueueLogAction_Event.htm ├── P_AsterNET_Manager_Action_QueueLogAction_Interface.htm ├── P_AsterNET_Manager_Action_QueueLogAction_Message.htm ├── P_AsterNET_Manager_Action_QueueLogAction_Queue.htm ├── P_AsterNET_Manager_Action_QueueLogAction_Uniqueid.htm ├── P_AsterNET_Manager_Action_QueuePauseAction_Action.htm ├── P_AsterNET_Manager_Action_QueuePauseAction_Interface.htm ├── P_AsterNET_Manager_Action_QueuePauseAction_Paused.htm ├── P_AsterNET_Manager_Action_QueuePauseAction_Queue.htm ├── P_AsterNET_Manager_Action_QueuePenaltyAction_Action.htm ├── P_AsterNET_Manager_Action_QueuePenaltyAction_Interface.htm ├── P_AsterNET_Manager_Action_QueuePenaltyAction_Penalty.htm ├── P_AsterNET_Manager_Action_QueuePenaltyAction_Queue.htm ├── P_AsterNET_Manager_Action_QueueReloadAction_Action.htm ├── P_AsterNET_Manager_Action_QueueReloadAction_Members.htm ├── P_AsterNET_Manager_Action_QueueReloadAction_Parameters.htm ├── P_AsterNET_Manager_Action_QueueReloadAction_Queue.htm ├── P_AsterNET_Manager_Action_QueueReloadAction_Rules.htm ├── P_AsterNET_Manager_Action_QueueRemoveAction_Action.htm ├── P_AsterNET_Manager_Action_QueueRemoveAction_Interface.htm ├── P_AsterNET_Manager_Action_QueueRemoveAction_Queue.htm ├── P_AsterNET_Manager_Action_QueueResetAction_Action.htm ├── P_AsterNET_Manager_Action_QueueResetAction_Queue.htm ├── P_AsterNET_Manager_Action_QueueRuleAction_Action.htm ├── P_AsterNET_Manager_Action_QueueRuleAction_Rule.htm ├── P_AsterNET_Manager_Action_QueueStatusAction_Action.htm ├── P_AsterNET_Manager_Action_QueueStatusAction_Member.htm ├── P_AsterNET_Manager_Action_QueueStatusAction_Queue.htm ├── P_AsterNET_Manager_Action_RedirectAction_Action.htm ├── P_AsterNET_Manager_Action_RedirectAction_Channel.htm ├── P_AsterNET_Manager_Action_RedirectAction_Context.htm ├── P_AsterNET_Manager_Action_RedirectAction_Exten.htm ├── P_AsterNET_Manager_Action_RedirectAction_ExtraChannel.htm ├── P_AsterNET_Manager_Action_RedirectAction_Priority.htm ├── P_AsterNET_Manager_Action_SIPPeersAction_Action.htm ├── P_AsterNET_Manager_Action_SIPShowPeerAction_Action.htm ├── P_AsterNET_Manager_Action_SIPShowPeerAction_Peer.htm ├── P_AsterNET_Manager_Action_SetCDRUserFieldAction_Action.htm ├── P_AsterNET_Manager_Action_SetCDRUserFieldAction_Append.htm ├── P_AsterNET_Manager_Action_SetCDRUserFieldAction_Channel.htm ├── P_AsterNET_Manager_Action_SetCDRUserFieldAction_UserField.htm ├── P_AsterNET_Manager_Action_SetVarAction_Action.htm ├── P_AsterNET_Manager_Action_SetVarAction_Channel.htm ├── P_AsterNET_Manager_Action_SetVarAction_Value.htm ├── P_AsterNET_Manager_Action_SetVarAction_Variable.htm ├── P_AsterNET_Manager_Action_StatusAction_Action.htm ├── P_AsterNET_Manager_Action_StopMonitorAction_Action.htm ├── P_AsterNET_Manager_Action_StopMonitorAction_Channel.htm ├── P_AsterNET_Manager_Action_UpdateConfigAction_Action.htm ├── P_AsterNET_Manager_Action_UpdateConfigAction_Actions.htm ├── P_AsterNET_Manager_Action_UpdateConfigAction_DstFileName.htm ├── P_AsterNET_Manager_Action_UpdateConfigAction_Reload.htm ├── P_AsterNET_Manager_Action_UpdateConfigAction_SrcFileName.htm ├── P_AsterNET_Manager_Action_ZapDNDOffAction_Action.htm ├── P_AsterNET_Manager_Action_ZapDNDOffAction_ZapChannel.htm ├── P_AsterNET_Manager_Action_ZapDNDOnAction_Action.htm ├── P_AsterNET_Manager_Action_ZapDNDOnAction_ZapChannel.htm ├── P_AsterNET_Manager_Action_ZapDialOffhookAction_Action.htm ├── P_AsterNET_Manager_Action_ZapDialOffhookAction_Number.htm ├── P_AsterNET_Manager_Action_ZapDialOffhookAction_ZapChannel.htm ├── P_AsterNET_Manager_Action_ZapHangupAction_Action.htm ├── P_AsterNET_Manager_Action_ZapHangupAction_ZapChannel.htm ├── P_AsterNET_Manager_Action_ZapShowChannelsAction_Action.htm ├── P_AsterNET_Manager_Action_ZapTransferAction_Action.htm ├── P_AsterNET_Manager_Action_ZapTransferAction_ZapChannel.htm ├── P_AsterNET_Manager_EventTimeoutException_PartialResult.htm ├── P_AsterNET_Manager_Event_AGIExecEvent_Command.htm ├── P_AsterNET_Manager_Event_AGIExecEvent_CommandId.htm ├── P_AsterNET_Manager_Event_AGIExecEvent_Result.htm ├── P_AsterNET_Manager_Event_AGIExecEvent_ResultCode.htm ├── P_AsterNET_Manager_Event_AGIExecEvent_SubEvent.htm ├── P_AsterNET_Manager_Event_AbstractAgentEvent_Member.htm ├── P_AsterNET_Manager_Event_AbstractAgentEvent_MemberName.htm ├── P_AsterNET_Manager_Event_AbstractAgentEvent_Queue.htm ├── P_AsterNET_Manager_Event_AbstractAgentVariables_Variable.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_AccountCode.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_CallerId.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelState.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelStateDesc.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_ConnectedLineName.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_Connectedlinenum.htm ├── P_AsterNET_Manager_Event_AbstractChannelEvent_State.htm ├── P_AsterNET_Manager_Event_AbstractConfbridgeEvent_Conference.htm ├── P_AsterNET_Manager_Event_AbstractMeetmeEvent_Meetme.htm ├── P_AsterNET_Manager_Event_AbstractMeetmeEvent_Usernum.htm ├── P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerId.htm ├── P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_AbstractParkedCallEvent_Exten.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_CallsTaken.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_InCall.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Interface.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_LastCall.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_MemberName.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Membership.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Paused.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_PausedReason.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Penalty.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Queue.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Ringinuse.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_StateInterface.htm ├── P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Status.htm ├── P_AsterNET_Manager_Event_AgentCallbackLoginEvent_Agent.htm ├── P_AsterNET_Manager_Event_AgentCallbackLoginEvent_LoginChan.htm ├── P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Agent.htm ├── P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginChan.htm ├── P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginTime.htm ├── P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Reason.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_AgentCalled.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_AgentName.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_CallerId.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_ChannelCalling.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_Context.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_DestinationChannel.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_Extension.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_Priority.htm ├── P_AsterNET_Manager_Event_AgentCalledEvent_Queue.htm ├── P_AsterNET_Manager_Event_AgentCompleteEvent_HoldTime.htm ├── P_AsterNET_Manager_Event_AgentCompleteEvent_Reason.htm ├── P_AsterNET_Manager_Event_AgentCompleteEvent_TalkTime.htm ├── P_AsterNET_Manager_Event_AgentConnectEvent_BridgedChannel.htm ├── P_AsterNET_Manager_Event_AgentConnectEvent_HoldTime.htm ├── P_AsterNET_Manager_Event_AgentConnectEvent_RingTime.htm ├── P_AsterNET_Manager_Event_AgentLoginEvent_Agent.htm ├── P_AsterNET_Manager_Event_AgentLoginEvent_LoginChan.htm ├── P_AsterNET_Manager_Event_AgentLogoffEvent_Agent.htm ├── P_AsterNET_Manager_Event_AgentLogoffEvent_LoginTime.htm ├── P_AsterNET_Manager_Event_AgentsEvent_Agent.htm ├── P_AsterNET_Manager_Event_AgentsEvent_LoggedInChan.htm ├── P_AsterNET_Manager_Event_AgentsEvent_LoggedInTime.htm ├── P_AsterNET_Manager_Event_AgentsEvent_Name.htm ├── P_AsterNET_Manager_Event_AgentsEvent_Status.htm ├── P_AsterNET_Manager_Event_AgentsEvent_TalkingTo.htm ├── P_AsterNET_Manager_Event_AlarmEvent_Alarm.htm ├── P_AsterNET_Manager_Event_AsyncAGIEvent_CommandId.htm ├── P_AsterNET_Manager_Event_AsyncAGIEvent_Env.htm ├── P_AsterNET_Manager_Event_AsyncAGIEvent_Result.htm ├── P_AsterNET_Manager_Event_AsyncAGIEvent_SubEvent.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_DestBridgeUniqueId.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_DestType.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_IsExternal.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeCreator.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeNumChannels.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeType.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeUniqueId.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgetechnology.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererAccountCode.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridNum.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannel.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelState.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelStatedesc.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineNum.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererContext.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererLanguage.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererPriority.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererUniqueId.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_Result.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeCreator.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeNumChannels.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeTechnology.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeType.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeUniqueId.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererAccountCode.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridNum.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannel.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelState.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelStatedesc.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineNum.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererContext.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererExten.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererLanguage.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererPriority.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererUniqueId.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetAccountCode.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridNum.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannel.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelState.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelStatedesc.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineNum.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetContext.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetLanguage.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetPriority.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetUniqueId.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeAccountCode.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridNum.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannel.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelState.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelStatedesc.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineName.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineNum.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeContext.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeExten.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeLanguage.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereePriority.htm ├── P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeUniqueId.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_BridgeCreator.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_BridgeName.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_BridgeNumChannels.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_BridgeTechnology.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_BridgeType.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_BridgeUniqueId.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_Context.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_Extension.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_IsExternal.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_Result.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeAccountCode.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdName.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdNum.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannel.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelState.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelStateDesc.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineName.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineNum.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeContext.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeExten.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeLanguage.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereePriority.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeUniqueId.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererAccountCode.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdName.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdNum.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannel.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelState.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelStatedesc.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineName.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineNum.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererContext.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererLanguage.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererPriority.htm ├── P_AsterNET_Manager_Event_BlindTransferEvent_TransfererUniqueId.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_AccountCode.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeCreator.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeName.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeNumChannels.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeTechnology.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeType.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeUniqueId.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelState.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelStatedDesc.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineName.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineNum.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_Context.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_Exten.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_Language.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_Linkedid.htm ├── P_AsterNET_Manager_Event_BridgeActivityEvent_Priority.htm ├── P_AsterNET_Manager_Event_BridgeEvent_BridgeState.htm ├── P_AsterNET_Manager_Event_BridgeEvent_BridgeType.htm ├── P_AsterNET_Manager_Event_BridgeEvent_CallerId1.htm ├── P_AsterNET_Manager_Event_BridgeEvent_CallerId2.htm ├── P_AsterNET_Manager_Event_BridgeEvent_Channel1.htm ├── P_AsterNET_Manager_Event_BridgeEvent_Channel2.htm ├── P_AsterNET_Manager_Event_BridgeEvent_Reason.htm ├── P_AsterNET_Manager_Event_BridgeEvent_Response.htm ├── P_AsterNET_Manager_Event_BridgeEvent_UniqueId1.htm ├── P_AsterNET_Manager_Event_BridgeEvent_UniqueId2.htm ├── P_AsterNET_Manager_Event_BridgeStateEvent_BridgeCreator.htm ├── P_AsterNET_Manager_Event_BridgeStateEvent_BridgeName.htm ├── P_AsterNET_Manager_Event_BridgeStateEvent_BridgeNumChannels.htm ├── P_AsterNET_Manager_Event_BridgeStateEvent_BridgeTechnology.htm ├── P_AsterNET_Manager_Event_BridgeStateEvent_BridgeType.htm ├── P_AsterNET_Manager_Event_BridgeStateEvent_BridgeUniqueId.htm ├── P_AsterNET_Manager_Event_CdrEvent_AccountCode.htm ├── P_AsterNET_Manager_Event_CdrEvent_AmaFlags.htm ├── P_AsterNET_Manager_Event_CdrEvent_AnswerTime.htm ├── P_AsterNET_Manager_Event_CdrEvent_BillableSeconds.htm ├── P_AsterNET_Manager_Event_CdrEvent_CallerId.htm ├── P_AsterNET_Manager_Event_CdrEvent_Destination.htm ├── P_AsterNET_Manager_Event_CdrEvent_DestinationChannel.htm ├── P_AsterNET_Manager_Event_CdrEvent_DestinationContext.htm ├── P_AsterNET_Manager_Event_CdrEvent_Disposition.htm ├── P_AsterNET_Manager_Event_CdrEvent_Duration.htm ├── P_AsterNET_Manager_Event_CdrEvent_EndTime.htm ├── P_AsterNET_Manager_Event_CdrEvent_LastApplication.htm ├── P_AsterNET_Manager_Event_CdrEvent_LastData.htm ├── P_AsterNET_Manager_Event_CdrEvent_Src.htm ├── P_AsterNET_Manager_Event_CdrEvent_StartTime.htm ├── P_AsterNET_Manager_Event_CdrEvent_UserField.htm ├── P_AsterNET_Manager_Event_ChannelReloadEvent_ChannelType.htm ├── P_AsterNET_Manager_Event_ChannelReloadEvent_PeerCount.htm ├── P_AsterNET_Manager_Event_ChannelReloadEvent_RegistryCount.htm ├── P_AsterNET_Manager_Event_ChannelReloadEvent_ReloadReason.htm ├── P_AsterNET_Manager_Event_ChannelReloadEvent_UserCount.htm ├── P_AsterNET_Manager_Event_ChannelUpdateEvent_ChannelType.htm ├── P_AsterNET_Manager_Event_ChannelUpdateEvent_GTalkSID.htm ├── P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoLocal.htm ├── P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoRemote.htm ├── P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2Peer.htm ├── P_AsterNET_Manager_Event_ChannelUpdateEvent_PeerName.htm ├── P_AsterNET_Manager_Event_ChannelUpdateEvent_SipCallId.htm ├── P_AsterNET_Manager_Event_ChannelUpdateEvent_SipFullContact.htm ├── P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDname.htm ├── P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDnum.htm ├── P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDname.htm ├── P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDnum.htm ├── P_AsterNET_Manager_Event_ConfbridgeListEvent_Admin.htm ├── P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDName.htm ├── P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDNum.htm ├── P_AsterNET_Manager_Event_ConfbridgeListEvent_MarkedUser.htm ├── P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Locked.htm ├── P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Marked.htm ├── P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Parties.htm ├── P_AsterNET_Manager_Event_ConfbridgeTalkingEvent_TalkingStatus.htm ├── P_AsterNET_Manager_Event_ConnectEvent_ProtocolIdentifier.htm ├── P_AsterNET_Manager_Event_ConnectionStateEvent_Reconnect.htm ├── P_AsterNET_Manager_Event_DBGetResponseEvent_Family.htm ├── P_AsterNET_Manager_Event_DBGetResponseEvent_Key.htm ├── P_AsterNET_Manager_Event_DBGetResponseEvent_Val.htm ├── P_AsterNET_Manager_Event_DNDStateEvent_State.htm ├── P_AsterNET_Manager_Event_DNDStateEvent_Status.htm ├── P_AsterNET_Manager_Event_DTMFEvent_Begin.htm ├── P_AsterNET_Manager_Event_DTMFEvent_Digit.htm ├── P_AsterNET_Manager_Event_DTMFEvent_Direction.htm ├── P_AsterNET_Manager_Event_DTMFEvent_End.htm ├── P_AsterNET_Manager_Event_DialEndEvent_Forward.htm ├── P_AsterNET_Manager_Event_DialEvent_CallerId.htm ├── P_AsterNET_Manager_Event_DialEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_DialEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_DialEvent_DestUniqueId.htm ├── P_AsterNET_Manager_Event_DialEvent_Destination.htm ├── P_AsterNET_Manager_Event_DialEvent_DialStatus.htm ├── P_AsterNET_Manager_Event_DialEvent_DialString.htm ├── P_AsterNET_Manager_Event_DialEvent_Src.htm ├── P_AsterNET_Manager_Event_DialEvent_SrcUniqueId.htm ├── P_AsterNET_Manager_Event_DialEvent_SubEvent.htm ├── P_AsterNET_Manager_Event_ExtensionStatusEvent_Context.htm ├── P_AsterNET_Manager_Event_ExtensionStatusEvent_Exten.htm ├── P_AsterNET_Manager_Event_ExtensionStatusEvent_Hint.htm ├── P_AsterNET_Manager_Event_ExtensionStatusEvent_Status.htm ├── P_AsterNET_Manager_Event_FailedACLEvent_ACLName.htm ├── P_AsterNET_Manager_Event_FailedACLEvent_LocalAddress.htm ├── P_AsterNET_Manager_Event_FailedACLEvent_RemoteAddress.htm ├── P_AsterNET_Manager_Event_FaxReceivedEvent_CallerId.htm ├── P_AsterNET_Manager_Event_FaxReceivedEvent_Exten.htm ├── P_AsterNET_Manager_Event_FaxReceivedEvent_Filename.htm ├── P_AsterNET_Manager_Event_FaxReceivedEvent_LocalStationId.htm ├── P_AsterNET_Manager_Event_FaxReceivedEvent_PagesTransferred.htm ├── P_AsterNET_Manager_Event_FaxReceivedEvent_RemoteStationId.htm ├── P_AsterNET_Manager_Event_FaxReceivedEvent_Resolution.htm ├── P_AsterNET_Manager_Event_FaxReceivedEvent_TransferRate.htm ├── P_AsterNET_Manager_Event_HangupEvent_Cause.htm ├── P_AsterNET_Manager_Event_HangupEvent_CauseTxt.htm ├── P_AsterNET_Manager_Event_HoldEvent_Status.htm ├── P_AsterNET_Manager_Event_HoldedCallEvent_Channel1.htm ├── P_AsterNET_Manager_Event_HoldedCallEvent_Channel2.htm ├── P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId1.htm ├── P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId2.htm ├── P_AsterNET_Manager_Event_JabberEvent_Account.htm ├── P_AsterNET_Manager_Event_JabberEvent_Packet.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalDropped.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJBDelay.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJitter.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalLossPercent.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalReceived.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalTotalLost.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_Localooo.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_Owner.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_Ping.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteDropped.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJBDelay.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJitter.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteLossPercent.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteReceived.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteTotalLost.htm ├── P_AsterNET_Manager_Event_JitterBufStatsEvent_Remoteooo.htm ├── P_AsterNET_Manager_Event_JoinEvent_CallerId.htm ├── P_AsterNET_Manager_Event_JoinEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_JoinEvent_Position.htm ├── P_AsterNET_Manager_Event_LogChannelEvent_Enabled.htm ├── P_AsterNET_Manager_Event_LogChannelEvent_Reason.htm ├── P_AsterNET_Manager_Event_LogChannelEvent_ReasonCode.htm ├── P_AsterNET_Manager_Event_ManagerEvent_Attributes.htm ├── P_AsterNET_Manager_Event_ManagerEvent_Channel.htm ├── P_AsterNET_Manager_Event_ManagerEvent_DateReceived.htm ├── P_AsterNET_Manager_Event_ManagerEvent_Privilege.htm ├── P_AsterNET_Manager_Event_ManagerEvent_Server.htm ├── P_AsterNET_Manager_Event_ManagerEvent_Source.htm ├── P_AsterNET_Manager_Event_ManagerEvent_Timestamp.htm ├── P_AsterNET_Manager_Event_ManagerEvent_UniqueId.htm ├── P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_MeetmeLeaveEvent_Duration.htm ├── P_AsterNET_Manager_Event_MeetmeMuteEvent_Status.htm ├── P_AsterNET_Manager_Event_MeetmeTalkRequestEvent_Status.htm ├── P_AsterNET_Manager_Event_MeetmeTalkingEvent_Status.htm ├── P_AsterNET_Manager_Event_MessageWaitingEvent_Mailbox.htm ├── P_AsterNET_Manager_Event_MessageWaitingEvent_New.htm ├── P_AsterNET_Manager_Event_MessageWaitingEvent_Old.htm ├── P_AsterNET_Manager_Event_MessageWaitingEvent_Waiting.htm ├── P_AsterNET_Manager_Event_MobileStatusEvent_Device.htm ├── P_AsterNET_Manager_Event_MobileStatusEvent_Status.htm ├── P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleCount.htm ├── P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleLoadStatus.htm ├── P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleSelection.htm ├── P_AsterNET_Manager_Event_NewAccountCodeEvent_AccountCode.htm ├── P_AsterNET_Manager_Event_NewAccountCodeEvent_OldAccountCode.htm ├── P_AsterNET_Manager_Event_NewCallerIdEvent_CallerId.htm ├── P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPres.htm ├── P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPresNumeric.htm ├── P_AsterNET_Manager_Event_NewExtenEvent_AppData.htm ├── P_AsterNET_Manager_Event_NewExtenEvent_AppdEvent.htm ├── P_AsterNET_Manager_Event_NewExtenEvent_Application.htm ├── P_AsterNET_Manager_Event_NewExtenEvent_Context.htm ├── P_AsterNET_Manager_Event_NewExtenEvent_Extension.htm ├── P_AsterNET_Manager_Event_NewExtenEvent_Priority.htm ├── P_AsterNET_Manager_Event_OriginateResponseEvent_CallerId.htm ├── P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_OriginateResponseEvent_Context.htm ├── P_AsterNET_Manager_Event_OriginateResponseEvent_Exten.htm ├── P_AsterNET_Manager_Event_OriginateResponseEvent_Reason.htm ├── P_AsterNET_Manager_Event_OriginateResponseEvent_Response.htm ├── P_AsterNET_Manager_Event_PRIEvent_DChannel.htm ├── P_AsterNET_Manager_Event_PRIEvent_PriEvent.htm ├── P_AsterNET_Manager_Event_PRIEvent_PriEventCode.htm ├── P_AsterNET_Manager_Event_PRIEvent_Span.htm ├── P_AsterNET_Manager_Event_ParkedCallEvent_CallerId.htm ├── P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_ParkedCallEvent_Exten.htm ├── P_AsterNET_Manager_Event_ParkedCallEvent_From.htm ├── P_AsterNET_Manager_Event_ParkedCallEvent_Timeout.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_Acl.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_ChanObjectType.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_ChannelType.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_Dynamic.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_IpAddress.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_IpPort.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_NatSupport.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_ObjectName.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_RealtimeDevice.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_Status.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_TextSupport.htm ├── P_AsterNET_Manager_Event_PeerEntryEvent_VideoSupport.htm ├── P_AsterNET_Manager_Event_PeerStatusEvent_Cause.htm ├── P_AsterNET_Manager_Event_PeerStatusEvent_ChannelType.htm ├── P_AsterNET_Manager_Event_PeerStatusEvent_Peer.htm ├── P_AsterNET_Manager_Event_PeerStatusEvent_PeerStatus.htm ├── P_AsterNET_Manager_Event_PeerStatusEvent_Time.htm ├── P_AsterNET_Manager_Event_PeerlistCompleteEvent_ListItems.htm ├── P_AsterNET_Manager_Event_QueueCallerAbandonEvent_HoldTime.htm ├── P_AsterNET_Manager_Event_QueueCallerAbandonEvent_OriginalPosition.htm ├── P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Position.htm ├── P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Queue.htm ├── P_AsterNET_Manager_Event_QueueCallerJoinEvent_Position.htm ├── P_AsterNET_Manager_Event_QueueCallerLeaveEvent_Position.htm ├── P_AsterNET_Manager_Event_QueueEntryEvent_CallerId.htm ├── P_AsterNET_Manager_Event_QueueEntryEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_QueueEntryEvent_Position.htm ├── P_AsterNET_Manager_Event_QueueEntryEvent_Queue.htm ├── P_AsterNET_Manager_Event_QueueEntryEvent_Wait.htm ├── P_AsterNET_Manager_Event_QueueEvent_Count.htm ├── P_AsterNET_Manager_Event_QueueEvent_Queue.htm ├── P_AsterNET_Manager_Event_QueueMemberAddedEvent_CallsTaken.htm ├── P_AsterNET_Manager_Event_QueueMemberAddedEvent_LastCall.htm ├── P_AsterNET_Manager_Event_QueueMemberAddedEvent_MemberName.htm ├── P_AsterNET_Manager_Event_QueueMemberAddedEvent_Membership.htm ├── P_AsterNET_Manager_Event_QueueMemberAddedEvent_Paused.htm ├── P_AsterNET_Manager_Event_QueueMemberAddedEvent_Penalty.htm ├── P_AsterNET_Manager_Event_QueueMemberAddedEvent_Status.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_CallsTaken.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_LastCall.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_Location.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_MemberName.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_Membership.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_Name.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_Paused.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_Penalty.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_Queue.htm ├── P_AsterNET_Manager_Event_QueueMemberEvent_Status.htm ├── P_AsterNET_Manager_Event_QueueMemberPauseEvent_Reason.htm ├── P_AsterNET_Manager_Event_QueueMemberPausedEvent_InCall.htm ├── P_AsterNET_Manager_Event_QueueMemberPausedEvent_PausedReason.htm ├── P_AsterNET_Manager_Event_QueueMemberPausedEvent_Reason.htm ├── P_AsterNET_Manager_Event_QueueMemberPenaltyEvent_Penalty.htm ├── P_AsterNET_Manager_Event_QueueMemberRemovedEvent_MemberName.htm ├── P_AsterNET_Manager_Event_QueueMemberRinginuseEvent_Ringinuse.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_CallsTaken.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_InCall.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_LastCall.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_MemberName.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_Membership.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_Paused.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_Penalty.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_StateInterface.htm ├── P_AsterNET_Manager_Event_QueueMemberStatusEvent_Status.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_Abandoned.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_Calls.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_Completed.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_Holdtime.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_Max.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_Queue.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevel.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevelPerf.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_Strategy.htm ├── P_AsterNET_Manager_Event_QueueParamsEvent_Weight.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_DLSR.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_FractionLost.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_From.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_HighestSequence.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_IAJitter.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_LastSR.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_PT.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_PacketsLost.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_RTT.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_ReceptionReports.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_SenderSSRC.htm ├── P_AsterNET_Manager_Event_RTCPReceivedEvent_SequenceNumberCycles.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_CumulativeLoss.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_DlSr.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_FractionLost.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_IAJitter.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_OursSrc.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_ReportBlock.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_SentNtp.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_SentOctets.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_SentPackets.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_SentRtp.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_TheirLastSr.htm ├── P_AsterNET_Manager_Event_RTCPSentEvent_To.htm ├── P_AsterNET_Manager_Event_RTPReceiverStatEvent_Jitter.htm ├── P_AsterNET_Manager_Event_RTPReceiverStatEvent_LostPackets.htm ├── P_AsterNET_Manager_Event_RTPReceiverStatEvent_RRCount.htm ├── P_AsterNET_Manager_Event_RTPReceiverStatEvent_ReceivedPackets.htm ├── P_AsterNET_Manager_Event_RTPReceiverStatEvent_SSRC.htm ├── P_AsterNET_Manager_Event_RTPReceiverStatEvent_Transit.htm ├── P_AsterNET_Manager_Event_RTPSenderStatEvent_Jitter.htm ├── P_AsterNET_Manager_Event_RTPSenderStatEvent_LostPackets.htm ├── P_AsterNET_Manager_Event_RTPSenderStatEvent_RTT.htm ├── P_AsterNET_Manager_Event_RTPSenderStatEvent_SRCount.htm ├── P_AsterNET_Manager_Event_RTPSenderStatEvent_SSRC.htm ├── P_AsterNET_Manager_Event_RTPSenderStatEvent_SentPackets.htm ├── P_AsterNET_Manager_Event_RegistryEvent_Cause.htm ├── P_AsterNET_Manager_Event_RegistryEvent_ChannelType.htm ├── P_AsterNET_Manager_Event_RegistryEvent_Domain.htm ├── P_AsterNET_Manager_Event_RegistryEvent_Status.htm ├── P_AsterNET_Manager_Event_RegistryEvent_User.htm ├── P_AsterNET_Manager_Event_RegistryEvent_Username.htm ├── P_AsterNET_Manager_Event_ReloadEvent_Message.htm ├── P_AsterNET_Manager_Event_ReloadEvent_Module.htm ├── P_AsterNET_Manager_Event_ReloadEvent_Status.htm ├── P_AsterNET_Manager_Event_RenameEvent_NewName.htm ├── P_AsterNET_Manager_Event_RenameEvent_OldName.htm ├── P_AsterNET_Manager_Event_ResponseEvent_ActionId.htm ├── P_AsterNET_Manager_Event_ResponseEvent_InternalActionId.htm ├── P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_EventList.htm ├── P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListContexts.htm ├── P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListExtensions.htm ├── P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListItems.htm ├── P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListPriorities.htm ├── P_AsterNET_Manager_Event_ShutdownEvent_File.htm ├── P_AsterNET_Manager_Event_ShutdownEvent_Func.htm ├── P_AsterNET_Manager_Event_ShutdownEvent_Line.htm ├── P_AsterNET_Manager_Event_ShutdownEvent_Restart.htm ├── P_AsterNET_Manager_Event_ShutdownEvent_SequenceNumber.htm ├── P_AsterNET_Manager_Event_ShutdownEvent_Shutdown.htm ├── P_AsterNET_Manager_Event_StatusCompleteEvent_Items.htm ├── P_AsterNET_Manager_Event_StatusEvent_Account.htm ├── P_AsterNET_Manager_Event_StatusEvent_CallerId.htm ├── P_AsterNET_Manager_Event_StatusEvent_CallerIdName.htm ├── P_AsterNET_Manager_Event_StatusEvent_CallerIdNum.htm ├── P_AsterNET_Manager_Event_StatusEvent_Context.htm ├── P_AsterNET_Manager_Event_StatusEvent_Extension.htm ├── P_AsterNET_Manager_Event_StatusEvent_Link.htm ├── P_AsterNET_Manager_Event_StatusEvent_Priority.htm ├── P_AsterNET_Manager_Event_StatusEvent_Seconds.htm ├── P_AsterNET_Manager_Event_StatusEvent_State.htm ├── P_AsterNET_Manager_Event_TransferEvent_SipCallId.htm ├── P_AsterNET_Manager_Event_TransferEvent_TargetChannel.htm ├── P_AsterNET_Manager_Event_TransferEvent_TargetUniqueId.htm ├── P_AsterNET_Manager_Event_TransferEvent_Transfer2Parking.htm ├── P_AsterNET_Manager_Event_TransferEvent_TransferContext.htm ├── P_AsterNET_Manager_Event_TransferEvent_TransferExten.htm ├── P_AsterNET_Manager_Event_TransferEvent_TransferMethod.htm ├── P_AsterNET_Manager_Event_TransferEvent_TransferType.htm ├── P_AsterNET_Manager_Event_UnparkedCallEvent_From.htm ├── P_AsterNET_Manager_Event_UserEvent_UserEventName.htm ├── P_AsterNET_Manager_Event_VarSetEvent_File.htm ├── P_AsterNET_Manager_Event_VarSetEvent_Func.htm ├── P_AsterNET_Manager_Event_VarSetEvent_Line.htm ├── P_AsterNET_Manager_Event_VarSetEvent_SequenceNumber.htm ├── P_AsterNET_Manager_Event_VarSetEvent_Value.htm ├── P_AsterNET_Manager_Event_VarSetEvent_Variable.htm ├── P_AsterNET_Manager_Event_ZapShowChannelsEvent_Alarm.htm ├── P_AsterNET_Manager_Event_ZapShowChannelsEvent_Context.htm ├── P_AsterNET_Manager_Event_ZapShowChannelsEvent_Signalling.htm ├── P_AsterNET_Manager_IResponseHandler_Action.htm ├── P_AsterNET_Manager_IResponseHandler_Hash.htm ├── P_AsterNET_Manager_ManagerConnection_AsteriskVersion.htm ├── P_AsterNET_Manager_ManagerConnection_DefaultEventTimeout.htm ├── P_AsterNET_Manager_ManagerConnection_DefaultResponseTimeout.htm ├── P_AsterNET_Manager_ManagerConnection_FireAllEvents.htm ├── P_AsterNET_Manager_ManagerConnection_Hostname.htm ├── P_AsterNET_Manager_ManagerConnection_KeepAlive.htm ├── P_AsterNET_Manager_ManagerConnection_KeepAliveAfterAuthenticationFailure.htm ├── P_AsterNET_Manager_ManagerConnection_Password.htm ├── P_AsterNET_Manager_ManagerConnection_PingInterval.htm ├── P_AsterNET_Manager_ManagerConnection_Port.htm ├── P_AsterNET_Manager_ManagerConnection_ReconnectIntervalFast.htm ├── P_AsterNET_Manager_ManagerConnection_ReconnectIntervalMax.htm ├── P_AsterNET_Manager_ManagerConnection_ReconnectRetryFast.htm ├── P_AsterNET_Manager_ManagerConnection_ReconnectRetryMax.htm ├── P_AsterNET_Manager_ManagerConnection_SleepTime.htm ├── P_AsterNET_Manager_ManagerConnection_SocketEncoding.htm ├── P_AsterNET_Manager_ManagerConnection_Username.htm ├── P_AsterNET_Manager_ManagerConnection_Version.htm ├── P_AsterNET_Manager_Originate_Account.htm ├── P_AsterNET_Manager_Originate_Application.htm ├── P_AsterNET_Manager_Originate_CallerId.htm ├── P_AsterNET_Manager_Originate_Channel.htm ├── P_AsterNET_Manager_Originate_Context.htm ├── P_AsterNET_Manager_Originate_Data.htm ├── P_AsterNET_Manager_Originate_Exten.htm ├── P_AsterNET_Manager_Originate_Priority.htm ├── P_AsterNET_Manager_Originate_Timeout.htm ├── P_AsterNET_Manager_ResponseEventHandler_Action.htm ├── P_AsterNET_Manager_ResponseEventHandler_Hash.htm ├── P_AsterNET_Manager_ResponseEventHandler_ResponseEvents.htm ├── P_AsterNET_Manager_ResponseEvents_Complete.htm ├── P_AsterNET_Manager_ResponseEvents_Events.htm ├── P_AsterNET_Manager_ResponseEvents_Response.htm ├── P_AsterNET_Manager_ResponseHandler_Action.htm ├── P_AsterNET_Manager_ResponseHandler_Hash.htm ├── P_AsterNET_Manager_ResponseHandler_Response.htm ├── P_AsterNET_Manager_Response_ChallengeResponse_Challenge.htm ├── P_AsterNET_Manager_Response_CommandResponse_Result.htm ├── P_AsterNET_Manager_Response_ExtensionStateResponse_Context.htm ├── P_AsterNET_Manager_Response_ExtensionStateResponse_Exten.htm ├── P_AsterNET_Manager_Response_ExtensionStateResponse_Hint.htm ├── P_AsterNET_Manager_Response_ExtensionStateResponse_Status.htm ├── P_AsterNET_Manager_Response_GetConfigResponse_Categories.htm ├── P_AsterNET_Manager_Response_MailboxCountResponse_Mailbox.htm ├── P_AsterNET_Manager_Response_MailboxCountResponse_NewMessages.htm ├── P_AsterNET_Manager_Response_MailboxCountResponse_OldMessages.htm ├── P_AsterNET_Manager_Response_MailboxStatusResponse_Mailbox.htm ├── P_AsterNET_Manager_Response_MailboxStatusResponse_Waiting.htm ├── P_AsterNET_Manager_Response_ManagerResponse_ActionId.htm ├── P_AsterNET_Manager_Response_ManagerResponse_Attributes.htm ├── P_AsterNET_Manager_Response_ManagerResponse_DateReceived.htm ├── P_AsterNET_Manager_Response_ManagerResponse_Message.htm ├── P_AsterNET_Manager_Response_ManagerResponse_Privilege.htm ├── P_AsterNET_Manager_Response_ManagerResponse_Response.htm ├── P_AsterNET_Manager_Response_ManagerResponse_Server.htm ├── P_AsterNET_Manager_Response_ManagerResponse_UniqueId.htm ├── P_AsterNET_Manager_Response_OriginateResponse_Channel.htm ├── P_AsterNET_Manager_Response_OriginateResponse_ChannelName.htm ├── P_AsterNET_Manager_Response_OriginateResponse_EndTime.htm ├── P_AsterNET_Manager_Response_OriginateResponse_IsSuccess.htm ├── P_AsterNET_Manager_Response_OriginateResponse_Reason.htm ├── P_AsterNET_Manager_Response_OriginateResponse_Response.htm ├── P_AsterNET_Manager_Response_OriginateResponse_StartTime.htm ├── P_AsterNET_Manager_Response_OriginateResponse_UniqueId.htm ├── P_AsterNET_Util_MD5Support_DigestData.htm ├── P_AsterNET_Util_ThreadClass_IsAlive.htm ├── P_AsterNET_Util_ThreadClass_IsBackground.htm ├── P_AsterNET_Util_ThreadClass_Name.htm ├── Properties_T_AsterNET_FastAGI_AGIChannel.htm ├── Properties_T_AsterNET_FastAGI_AGIException.htm ├── Properties_T_AsterNET_FastAGI_AGIHangupException.htm ├── Properties_T_AsterNET_FastAGI_AGINetworkException.htm ├── Properties_T_AsterNET_FastAGI_AGIReply.htm ├── Properties_T_AsterNET_FastAGI_AGIRequest.htm ├── Properties_T_AsterNET_FastAGI_AGIScript.htm ├── Properties_T_AsterNET_FastAGI_AsteriskFastAGI.htm ├── Properties_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_ExecCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_GetDataCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_GetOptionCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_GetVariableCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_HangupCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_RecordFileCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SayNumberCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SayTimeCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SendImageCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SendTextCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SetContextCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_SetVariableCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_StreamFileCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_TDDModeCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_VerboseCommand.htm ├── Properties_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm ├── Properties_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm ├── Properties_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm ├── Properties_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm ├── Properties_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm ├── Properties_T_AsterNET_FastAGI_MappingStrategy.htm ├── Properties_T_AsterNET_IO_SocketConnection.htm ├── Properties_T_AsterNET_Manager_Action_AOCMessageAction.htm ├── Properties_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm ├── Properties_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm ├── Properties_T_AsterNET_Manager_Action_AgentLogoffAction.htm ├── Properties_T_AsterNET_Manager_Action_AgentsAction.htm ├── Properties_T_AsterNET_Manager_Action_AgiAction.htm ├── Properties_T_AsterNET_Manager_Action_AtxferAction.htm ├── Properties_T_AsterNET_Manager_Action_BridgeAction.htm ├── Properties_T_AsterNET_Manager_Action_ChallengeAction.htm ├── Properties_T_AsterNET_Manager_Action_ChangeMonitorAction.htm ├── Properties_T_AsterNET_Manager_Action_CommandAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeListAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm ├── Properties_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm ├── Properties_T_AsterNET_Manager_Action_CoreSettingsAction.htm ├── Properties_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm ├── Properties_T_AsterNET_Manager_Action_CoreStatusAction.htm ├── Properties_T_AsterNET_Manager_Action_CreateConfigAction.htm ├── Properties_T_AsterNET_Manager_Action_DBDelAction.htm ├── Properties_T_AsterNET_Manager_Action_DBDelTreeAction.htm ├── Properties_T_AsterNET_Manager_Action_DBGetAction.htm ├── Properties_T_AsterNET_Manager_Action_DBPutAction.htm ├── Properties_T_AsterNET_Manager_Action_EventsAction.htm ├── Properties_T_AsterNET_Manager_Action_ExtensionStateAction.htm ├── Properties_T_AsterNET_Manager_Action_GetConfigAction.htm ├── Properties_T_AsterNET_Manager_Action_GetVarAction.htm ├── Properties_T_AsterNET_Manager_Action_HangupAction.htm ├── Properties_T_AsterNET_Manager_Action_LoginAction.htm ├── Properties_T_AsterNET_Manager_Action_LogoffAction.htm ├── Properties_T_AsterNET_Manager_Action_MailboxCountAction.htm ├── Properties_T_AsterNET_Manager_Action_MailboxStatusAction.htm ├── Properties_T_AsterNET_Manager_Action_ManagerAction.htm ├── Properties_T_AsterNET_Manager_Action_ManagerActionEvent.htm ├── Properties_T_AsterNET_Manager_Action_ManagerActionResponse.htm ├── Properties_T_AsterNET_Manager_Action_MonitorAction.htm ├── Properties_T_AsterNET_Manager_Action_OriginateAction.htm ├── Properties_T_AsterNET_Manager_Action_ParkAction.htm ├── Properties_T_AsterNET_Manager_Action_ParkedCallsAction.htm ├── Properties_T_AsterNET_Manager_Action_PingAction.htm ├── Properties_T_AsterNET_Manager_Action_ProxyAction.htm ├── Properties_T_AsterNET_Manager_Action_QueueAddAction.htm ├── Properties_T_AsterNET_Manager_Action_QueueLogAction.htm ├── Properties_T_AsterNET_Manager_Action_QueuePauseAction.htm ├── Properties_T_AsterNET_Manager_Action_QueuePenaltyAction.htm ├── Properties_T_AsterNET_Manager_Action_QueueReloadAction.htm ├── Properties_T_AsterNET_Manager_Action_QueueRemoveAction.htm ├── Properties_T_AsterNET_Manager_Action_QueueResetAction.htm ├── Properties_T_AsterNET_Manager_Action_QueueRuleAction.htm ├── Properties_T_AsterNET_Manager_Action_QueueStatusAction.htm ├── Properties_T_AsterNET_Manager_Action_RedirectAction.htm ├── Properties_T_AsterNET_Manager_Action_SIPPeersAction.htm ├── Properties_T_AsterNET_Manager_Action_SIPShowPeerAction.htm ├── Properties_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm ├── Properties_T_AsterNET_Manager_Action_SetVarAction.htm ├── Properties_T_AsterNET_Manager_Action_StatusAction.htm ├── Properties_T_AsterNET_Manager_Action_StopMonitorAction.htm ├── Properties_T_AsterNET_Manager_Action_UpdateConfigAction.htm ├── Properties_T_AsterNET_Manager_Action_ZapDNDOffAction.htm ├── Properties_T_AsterNET_Manager_Action_ZapDNDOnAction.htm ├── Properties_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm ├── Properties_T_AsterNET_Manager_Action_ZapHangupAction.htm ├── Properties_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm ├── Properties_T_AsterNET_Manager_Action_ZapTransferAction.htm ├── Properties_T_AsterNET_Manager_AuthenticationFailedException.htm ├── Properties_T_AsterNET_Manager_EventTimeoutException.htm ├── Properties_T_AsterNET_Manager_Event_AGIExecEvent.htm ├── Properties_T_AsterNET_Manager_Event_AbstractAgentEvent.htm ├── Properties_T_AsterNET_Manager_Event_AbstractAgentVariables.htm ├── Properties_T_AsterNET_Manager_Event_AbstractChannelEvent.htm ├── Properties_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm ├── Properties_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm ├── Properties_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm ├── Properties_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentCalledEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentConnectEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentDumpEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentLoginEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentLogoffEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_AgentsEvent.htm ├── Properties_T_AsterNET_Manager_Event_AlarmClearEvent.htm ├── Properties_T_AsterNET_Manager_Event_AlarmEvent.htm ├── Properties_T_AsterNET_Manager_Event_AsyncAGIEvent.htm ├── Properties_T_AsterNET_Manager_Event_AttendedTransferEvent.htm ├── Properties_T_AsterNET_Manager_Event_BlindTransferEvent.htm ├── Properties_T_AsterNET_Manager_Event_BridgeActivityEvent.htm ├── Properties_T_AsterNET_Manager_Event_BridgeCreateEvent.htm ├── Properties_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm ├── Properties_T_AsterNET_Manager_Event_BridgeEnterEvent.htm ├── Properties_T_AsterNET_Manager_Event_BridgeEvent.htm ├── Properties_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm ├── Properties_T_AsterNET_Manager_Event_BridgeStateEvent.htm ├── Properties_T_AsterNET_Manager_Event_CdrEvent.htm ├── Properties_T_AsterNET_Manager_Event_ChannelReloadEvent.htm ├── Properties_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConnectEvent.htm ├── Properties_T_AsterNET_Manager_Event_ConnectionStateEvent.htm ├── Properties_T_AsterNET_Manager_Event_DBGetResponseEvent.htm ├── Properties_T_AsterNET_Manager_Event_DNDStateEvent.htm ├── Properties_T_AsterNET_Manager_Event_DTMFEvent.htm ├── Properties_T_AsterNET_Manager_Event_DialBeginEvent.htm ├── Properties_T_AsterNET_Manager_Event_DialEndEvent.htm ├── Properties_T_AsterNET_Manager_Event_DialEvent.htm ├── Properties_T_AsterNET_Manager_Event_DisconnectEvent.htm ├── Properties_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm ├── Properties_T_AsterNET_Manager_Event_FailedACLEvent.htm ├── Properties_T_AsterNET_Manager_Event_FaxReceivedEvent.htm ├── Properties_T_AsterNET_Manager_Event_HangupEvent.htm ├── Properties_T_AsterNET_Manager_Event_HoldEvent.htm ├── Properties_T_AsterNET_Manager_Event_HoldedCallEvent.htm ├── Properties_T_AsterNET_Manager_Event_JabberEvent.htm ├── Properties_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm ├── Properties_T_AsterNET_Manager_Event_JoinEvent.htm ├── Properties_T_AsterNET_Manager_Event_LeaveEvent.htm ├── Properties_T_AsterNET_Manager_Event_LinkEvent.htm ├── Properties_T_AsterNET_Manager_Event_LogChannelEvent.htm ├── Properties_T_AsterNET_Manager_Event_ManagerEvent.htm ├── Properties_T_AsterNET_Manager_Event_MeetmeEndEvent.htm ├── Properties_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm ├── Properties_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm ├── Properties_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm ├── Properties_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm ├── Properties_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm ├── Properties_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm ├── Properties_T_AsterNET_Manager_Event_MessageWaitingEvent.htm ├── Properties_T_AsterNET_Manager_Event_MobileStatusEvent.htm ├── Properties_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm ├── Properties_T_AsterNET_Manager_Event_MonitorStartEvent.htm ├── Properties_T_AsterNET_Manager_Event_MonitorStopEvent.htm ├── Properties_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm ├── Properties_T_AsterNET_Manager_Event_NewCallerIdEvent.htm ├── Properties_T_AsterNET_Manager_Event_NewChannelEvent.htm ├── Properties_T_AsterNET_Manager_Event_NewExtenEvent.htm ├── Properties_T_AsterNET_Manager_Event_NewStateEvent.htm ├── Properties_T_AsterNET_Manager_Event_OriginateResponseEvent.htm ├── Properties_T_AsterNET_Manager_Event_PRIEvent.htm ├── Properties_T_AsterNET_Manager_Event_ParkedCallEvent.htm ├── Properties_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm ├── Properties_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm ├── Properties_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_PeerEntryEvent.htm ├── Properties_T_AsterNET_Manager_Event_PeerStatusEvent.htm ├── Properties_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueEntryEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueMemberEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueParamsEvent.htm ├── Properties_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm ├── Properties_T_AsterNET_Manager_Event_RTCPSentEvent.htm ├── Properties_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm ├── Properties_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm ├── Properties_T_AsterNET_Manager_Event_RegistryEvent.htm ├── Properties_T_AsterNET_Manager_Event_ReloadEvent.htm ├── Properties_T_AsterNET_Manager_Event_RenameEvent.htm ├── Properties_T_AsterNET_Manager_Event_ResponseEvent.htm ├── Properties_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_ShutdownEvent.htm ├── Properties_T_AsterNET_Manager_Event_StatusCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_StatusEvent.htm ├── Properties_T_AsterNET_Manager_Event_TransferEvent.htm ├── Properties_T_AsterNET_Manager_Event_UnholdEvent.htm ├── Properties_T_AsterNET_Manager_Event_UnknownEvent.htm ├── Properties_T_AsterNET_Manager_Event_UnlinkEvent.htm ├── Properties_T_AsterNET_Manager_Event_UnparkedCallEvent.htm ├── Properties_T_AsterNET_Manager_Event_UserEvent.htm ├── Properties_T_AsterNET_Manager_Event_VarSetEvent.htm ├── Properties_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm ├── Properties_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm ├── Properties_T_AsterNET_Manager_IResponseHandler.htm ├── Properties_T_AsterNET_Manager_ManagerConnection.htm ├── Properties_T_AsterNET_Manager_ManagerException.htm ├── Properties_T_AsterNET_Manager_Originate.htm ├── Properties_T_AsterNET_Manager_ResponseEventHandler.htm ├── Properties_T_AsterNET_Manager_ResponseEvents.htm ├── Properties_T_AsterNET_Manager_ResponseHandler.htm ├── Properties_T_AsterNET_Manager_Response_ChallengeResponse.htm ├── Properties_T_AsterNET_Manager_Response_CommandResponse.htm ├── Properties_T_AsterNET_Manager_Response_ExtensionStateResponse.htm ├── Properties_T_AsterNET_Manager_Response_GetConfigResponse.htm ├── Properties_T_AsterNET_Manager_Response_MailboxCountResponse.htm ├── Properties_T_AsterNET_Manager_Response_MailboxStatusResponse.htm ├── Properties_T_AsterNET_Manager_Response_ManagerError.htm ├── Properties_T_AsterNET_Manager_Response_ManagerResponse.htm ├── Properties_T_AsterNET_Manager_Response_OriginateResponse.htm ├── Properties_T_AsterNET_Manager_TimeoutException.htm ├── Properties_T_AsterNET_Util_MD5Support.htm ├── Properties_T_AsterNET_Util_ThreadClass.htm ├── T_AsterNET_Common.htm ├── T_AsterNET_FastAGI_AGIChannel.htm ├── T_AsterNET_FastAGI_AGIConnectionHandler.htm ├── T_AsterNET_FastAGI_AGIException.htm ├── T_AsterNET_FastAGI_AGIHangupException.htm ├── T_AsterNET_FastAGI_AGINetworkException.htm ├── T_AsterNET_FastAGI_AGIReader.htm ├── T_AsterNET_FastAGI_AGIReply.htm ├── T_AsterNET_FastAGI_AGIReplyStatuses.htm ├── T_AsterNET_FastAGI_AGIRequest.htm ├── T_AsterNET_FastAGI_AGIScript.htm ├── T_AsterNET_FastAGI_AGIWriter.htm ├── T_AsterNET_FastAGI_AsteriskFastAGI.htm ├── T_AsterNET_FastAGI_Command_AGICommand.htm ├── T_AsterNET_FastAGI_Command_AnswerCommand.htm ├── T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm ├── T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm ├── T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm ├── T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm ├── T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm ├── T_AsterNET_FastAGI_Command_DatabasePutCommand.htm ├── T_AsterNET_FastAGI_Command_ExecCommand.htm ├── T_AsterNET_FastAGI_Command_GetDataCommand.htm ├── T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm ├── T_AsterNET_FastAGI_Command_GetOptionCommand.htm ├── T_AsterNET_FastAGI_Command_GetVariableCommand.htm ├── T_AsterNET_FastAGI_Command_HangupCommand.htm ├── T_AsterNET_FastAGI_Command_NoopCommand.htm ├── T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm ├── T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm ├── T_AsterNET_FastAGI_Command_RecordFileCommand.htm ├── T_AsterNET_FastAGI_Command_SayAlphaCommand.htm ├── T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm ├── T_AsterNET_FastAGI_Command_SayDigitsCommand.htm ├── T_AsterNET_FastAGI_Command_SayNumberCommand.htm ├── T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm ├── T_AsterNET_FastAGI_Command_SayTimeCommand.htm ├── T_AsterNET_FastAGI_Command_SendImageCommand.htm ├── T_AsterNET_FastAGI_Command_SendTextCommand.htm ├── T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm ├── T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm ├── T_AsterNET_FastAGI_Command_SetContextCommand.htm ├── T_AsterNET_FastAGI_Command_SetExtensionCommand.htm ├── T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm ├── T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm ├── T_AsterNET_FastAGI_Command_SetPriorityCommand.htm ├── T_AsterNET_FastAGI_Command_SetVariableCommand.htm ├── T_AsterNET_FastAGI_Command_StreamFileCommand.htm ├── T_AsterNET_FastAGI_Command_TDDModeCommand.htm ├── T_AsterNET_FastAGI_Command_VerboseCommand.htm ├── T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm ├── T_AsterNET_FastAGI_IMappingStrategy.htm ├── T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm ├── T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm ├── T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm ├── T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm ├── T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm ├── T_AsterNET_FastAGI_MappingStrategy.htm ├── T_AsterNET_IO_ServerSocket.htm ├── T_AsterNET_IO_SocketConnection.htm ├── T_AsterNET_Logger.htm ├── T_AsterNET_Logger_MessageLevel.htm ├── T_AsterNET_Manager_AGIExecHandler.htm ├── T_AsterNET_Manager_Action_AOCMessageAction.htm ├── T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm ├── T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm ├── T_AsterNET_Manager_Action_AgentLogoffAction.htm ├── T_AsterNET_Manager_Action_AgentsAction.htm ├── T_AsterNET_Manager_Action_AgiAction.htm ├── T_AsterNET_Manager_Action_AtxferAction.htm ├── T_AsterNET_Manager_Action_BridgeAction.htm ├── T_AsterNET_Manager_Action_ChallengeAction.htm ├── T_AsterNET_Manager_Action_ChangeMonitorAction.htm ├── T_AsterNET_Manager_Action_CommandAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeKickAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeListAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeLockAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm ├── T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm ├── T_AsterNET_Manager_Action_CoreSettingsAction.htm ├── T_AsterNET_Manager_Action_CoreShowChannelsAction.htm ├── T_AsterNET_Manager_Action_CoreStatusAction.htm ├── T_AsterNET_Manager_Action_CreateConfigAction.htm ├── T_AsterNET_Manager_Action_DBDelAction.htm ├── T_AsterNET_Manager_Action_DBDelTreeAction.htm ├── T_AsterNET_Manager_Action_DBGetAction.htm ├── T_AsterNET_Manager_Action_DBPutAction.htm ├── T_AsterNET_Manager_Action_EventsAction.htm ├── T_AsterNET_Manager_Action_ExtensionStateAction.htm ├── T_AsterNET_Manager_Action_GetConfigAction.htm ├── T_AsterNET_Manager_Action_GetVarAction.htm ├── T_AsterNET_Manager_Action_HangupAction.htm ├── T_AsterNET_Manager_Action_LoginAction.htm ├── T_AsterNET_Manager_Action_LogoffAction.htm ├── T_AsterNET_Manager_Action_MailboxCountAction.htm ├── T_AsterNET_Manager_Action_MailboxStatusAction.htm ├── T_AsterNET_Manager_Action_ManagerAction.htm ├── T_AsterNET_Manager_Action_ManagerActionEvent.htm ├── T_AsterNET_Manager_Action_ManagerActionResponse.htm ├── T_AsterNET_Manager_Action_MonitorAction.htm ├── T_AsterNET_Manager_Action_OriginateAction.htm ├── T_AsterNET_Manager_Action_ParkAction.htm ├── T_AsterNET_Manager_Action_ParkedCallsAction.htm ├── T_AsterNET_Manager_Action_PingAction.htm ├── T_AsterNET_Manager_Action_ProxyAction.htm ├── T_AsterNET_Manager_Action_QueueAddAction.htm ├── T_AsterNET_Manager_Action_QueueLogAction.htm ├── T_AsterNET_Manager_Action_QueuePauseAction.htm ├── T_AsterNET_Manager_Action_QueuePenaltyAction.htm ├── T_AsterNET_Manager_Action_QueueReloadAction.htm ├── T_AsterNET_Manager_Action_QueueRemoveAction.htm ├── T_AsterNET_Manager_Action_QueueResetAction.htm ├── T_AsterNET_Manager_Action_QueueRuleAction.htm ├── T_AsterNET_Manager_Action_QueueStatusAction.htm ├── T_AsterNET_Manager_Action_RedirectAction.htm ├── T_AsterNET_Manager_Action_SIPPeersAction.htm ├── T_AsterNET_Manager_Action_SIPShowPeerAction.htm ├── T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm ├── T_AsterNET_Manager_Action_SetVarAction.htm ├── T_AsterNET_Manager_Action_StatusAction.htm ├── T_AsterNET_Manager_Action_StopMonitorAction.htm ├── T_AsterNET_Manager_Action_UpdateConfigAction.htm ├── T_AsterNET_Manager_Action_ZapDNDOffAction.htm ├── T_AsterNET_Manager_Action_ZapDNDOnAction.htm ├── T_AsterNET_Manager_Action_ZapDialOffhookAction.htm ├── T_AsterNET_Manager_Action_ZapHangupAction.htm ├── T_AsterNET_Manager_Action_ZapShowChannelsAction.htm ├── T_AsterNET_Manager_Action_ZapTransferAction.htm ├── T_AsterNET_Manager_AgentCallbackLoginEventHandler.htm ├── T_AsterNET_Manager_AgentCallbackLogoffEventHandler.htm ├── T_AsterNET_Manager_AgentCalledEventHandler.htm ├── T_AsterNET_Manager_AgentCompleteEventHandler.htm ├── T_AsterNET_Manager_AgentConnectEventHandler.htm ├── T_AsterNET_Manager_AgentDumpEventHandler.htm ├── T_AsterNET_Manager_AgentLoginEventHandler.htm ├── T_AsterNET_Manager_AgentLogoffEventHandler.htm ├── T_AsterNET_Manager_AgentsCompleteEventHandler.htm ├── T_AsterNET_Manager_AgentsEventHandler.htm ├── T_AsterNET_Manager_AlarmClearEventHandler.htm ├── T_AsterNET_Manager_AlarmEventHandler.htm ├── T_AsterNET_Manager_AsteriskVersion.htm ├── T_AsterNET_Manager_AttendedTransferEventHandler.htm ├── T_AsterNET_Manager_AuthenticationFailedException.htm ├── T_AsterNET_Manager_BlindTransferEventHandler.htm ├── T_AsterNET_Manager_BridgeCreateEventHandler.htm ├── T_AsterNET_Manager_BridgeDestroyEventHandler.htm ├── T_AsterNET_Manager_BridgeEnterEventHandler.htm ├── T_AsterNET_Manager_BridgeEventHandler.htm ├── T_AsterNET_Manager_BridgeLeaveEventHandler.htm ├── T_AsterNET_Manager_CdrEventHandler.htm ├── T_AsterNET_Manager_ConfbridgeEndEventHandler.htm ├── T_AsterNET_Manager_ConfbridgeJoinEventHandler.htm ├── T_AsterNET_Manager_ConfbridgeLeaveEventHandler.htm ├── T_AsterNET_Manager_ConfbridgeStartEventHandler.htm ├── T_AsterNET_Manager_ConfbridgeTalkingEventHandler.htm ├── T_AsterNET_Manager_ConnectionStateEventHandler.htm ├── T_AsterNET_Manager_DBGetResponseEventHandler.htm ├── T_AsterNET_Manager_DNDStateEventHandler.htm ├── T_AsterNET_Manager_DTMFEventHandler.htm ├── T_AsterNET_Manager_DialBeginEventHandler.htm ├── T_AsterNET_Manager_DialEndEventHandler.htm ├── T_AsterNET_Manager_DialEventHandler.htm ├── T_AsterNET_Manager_EventTimeoutException.htm ├── T_AsterNET_Manager_Event_AGIExecEvent.htm ├── T_AsterNET_Manager_Event_AbstractAgentEvent.htm ├── T_AsterNET_Manager_Event_AbstractAgentVariables.htm ├── T_AsterNET_Manager_Event_AbstractChannelEvent.htm ├── T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm ├── T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm ├── T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm ├── T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm ├── T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm ├── T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm ├── T_AsterNET_Manager_Event_AgentCalledEvent.htm ├── T_AsterNET_Manager_Event_AgentCompleteEvent.htm ├── T_AsterNET_Manager_Event_AgentConnectEvent.htm ├── T_AsterNET_Manager_Event_AgentDumpEvent.htm ├── T_AsterNET_Manager_Event_AgentLoginEvent.htm ├── T_AsterNET_Manager_Event_AgentLogoffEvent.htm ├── T_AsterNET_Manager_Event_AgentsCompleteEvent.htm ├── T_AsterNET_Manager_Event_AgentsEvent.htm ├── T_AsterNET_Manager_Event_AlarmClearEvent.htm ├── T_AsterNET_Manager_Event_AlarmEvent.htm ├── T_AsterNET_Manager_Event_AsyncAGIEvent.htm ├── T_AsterNET_Manager_Event_AttendedTransferEvent.htm ├── T_AsterNET_Manager_Event_BlindTransferEvent.htm ├── T_AsterNET_Manager_Event_BridgeActivityEvent.htm ├── T_AsterNET_Manager_Event_BridgeCreateEvent.htm ├── T_AsterNET_Manager_Event_BridgeDestroyEvent.htm ├── T_AsterNET_Manager_Event_BridgeEnterEvent.htm ├── T_AsterNET_Manager_Event_BridgeEvent.htm ├── T_AsterNET_Manager_Event_BridgeEvent_BridgeStates.htm ├── T_AsterNET_Manager_Event_BridgeEvent_BridgeTypes.htm ├── T_AsterNET_Manager_Event_BridgeLeaveEvent.htm ├── T_AsterNET_Manager_Event_BridgeStateEvent.htm ├── T_AsterNET_Manager_Event_CdrEvent.htm ├── T_AsterNET_Manager_Event_ChannelReloadEvent.htm ├── T_AsterNET_Manager_Event_ChannelUpdateEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeListEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm ├── T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm ├── T_AsterNET_Manager_Event_ConnectEvent.htm ├── T_AsterNET_Manager_Event_ConnectionStateEvent.htm ├── T_AsterNET_Manager_Event_DBGetResponseEvent.htm ├── T_AsterNET_Manager_Event_DNDStateEvent.htm ├── T_AsterNET_Manager_Event_DTMFEvent.htm ├── T_AsterNET_Manager_Event_DialBeginEvent.htm ├── T_AsterNET_Manager_Event_DialEndEvent.htm ├── T_AsterNET_Manager_Event_DialEvent.htm ├── T_AsterNET_Manager_Event_DisconnectEvent.htm ├── T_AsterNET_Manager_Event_ExtensionStatusEvent.htm ├── T_AsterNET_Manager_Event_FailedACLEvent.htm ├── T_AsterNET_Manager_Event_FaxReceivedEvent.htm ├── T_AsterNET_Manager_Event_HangupEvent.htm ├── T_AsterNET_Manager_Event_HoldEvent.htm ├── T_AsterNET_Manager_Event_HoldedCallEvent.htm ├── T_AsterNET_Manager_Event_JabberEvent.htm ├── T_AsterNET_Manager_Event_JitterBufStatsEvent.htm ├── T_AsterNET_Manager_Event_JoinEvent.htm ├── T_AsterNET_Manager_Event_LeaveEvent.htm ├── T_AsterNET_Manager_Event_LinkEvent.htm ├── T_AsterNET_Manager_Event_LogChannelEvent.htm ├── T_AsterNET_Manager_Event_ManagerEvent.htm ├── T_AsterNET_Manager_Event_MeetmeEndEvent.htm ├── T_AsterNET_Manager_Event_MeetmeJoinEvent.htm ├── T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm ├── T_AsterNET_Manager_Event_MeetmeMuteEvent.htm ├── T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm ├── T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm ├── T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm ├── T_AsterNET_Manager_Event_MessageWaitingEvent.htm ├── T_AsterNET_Manager_Event_MobileStatusEvent.htm ├── T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm ├── T_AsterNET_Manager_Event_MonitorStartEvent.htm ├── T_AsterNET_Manager_Event_MonitorStopEvent.htm ├── T_AsterNET_Manager_Event_NewAccountCodeEvent.htm ├── T_AsterNET_Manager_Event_NewCallerIdEvent.htm ├── T_AsterNET_Manager_Event_NewChannelEvent.htm ├── T_AsterNET_Manager_Event_NewExtenEvent.htm ├── T_AsterNET_Manager_Event_NewStateEvent.htm ├── T_AsterNET_Manager_Event_OriginateResponseEvent.htm ├── T_AsterNET_Manager_Event_PRIEvent.htm ├── T_AsterNET_Manager_Event_ParkedCallEvent.htm ├── T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm ├── T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm ├── T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm ├── T_AsterNET_Manager_Event_PeerEntryEvent.htm ├── T_AsterNET_Manager_Event_PeerStatusEvent.htm ├── T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm ├── T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm ├── T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm ├── T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm ├── T_AsterNET_Manager_Event_QueueEntryEvent.htm ├── T_AsterNET_Manager_Event_QueueEvent.htm ├── T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm ├── T_AsterNET_Manager_Event_QueueMemberEvent.htm ├── T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm ├── T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm ├── T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm ├── T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm ├── T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm ├── T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm ├── T_AsterNET_Manager_Event_QueueParamsEvent.htm ├── T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm ├── T_AsterNET_Manager_Event_RTCPReceivedEvent.htm ├── T_AsterNET_Manager_Event_RTCPSentEvent.htm ├── T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm ├── T_AsterNET_Manager_Event_RTPSenderStatEvent.htm ├── T_AsterNET_Manager_Event_RegistryEvent.htm ├── T_AsterNET_Manager_Event_ReloadEvent.htm ├── T_AsterNET_Manager_Event_RenameEvent.htm ├── T_AsterNET_Manager_Event_ResponseEvent.htm ├── T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm ├── T_AsterNET_Manager_Event_ShutdownEvent.htm ├── T_AsterNET_Manager_Event_StatusCompleteEvent.htm ├── T_AsterNET_Manager_Event_StatusEvent.htm ├── T_AsterNET_Manager_Event_TransferEvent.htm ├── T_AsterNET_Manager_Event_UnholdEvent.htm ├── T_AsterNET_Manager_Event_UnknownEvent.htm ├── T_AsterNET_Manager_Event_UnlinkEvent.htm ├── T_AsterNET_Manager_Event_UnparkedCallEvent.htm ├── T_AsterNET_Manager_Event_UserEvent.htm ├── T_AsterNET_Manager_Event_VarSetEvent.htm ├── T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm ├── T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm ├── T_AsterNET_Manager_ExtensionStatusEventHandler.htm ├── T_AsterNET_Manager_FailedACLEventHandler.htm ├── T_AsterNET_Manager_HangupEventHandler.htm ├── T_AsterNET_Manager_HoldEventHandler.htm ├── T_AsterNET_Manager_HoldedCallEventHandler.htm ├── T_AsterNET_Manager_IResponseHandler.htm ├── T_AsterNET_Manager_JoinEventHandler.htm ├── T_AsterNET_Manager_LeaveEventHandler.htm ├── T_AsterNET_Manager_LinkEventHandler.htm ├── T_AsterNET_Manager_LogChannelEventHandler.htm ├── T_AsterNET_Manager_ManagerConnection.htm ├── T_AsterNET_Manager_ManagerEventHandler.htm ├── T_AsterNET_Manager_ManagerException.htm ├── T_AsterNET_Manager_ManagerReader.htm ├── T_AsterNET_Manager_MeetMeJoinEventHandler.htm ├── T_AsterNET_Manager_MeetMeLeaveEventHandler.htm ├── T_AsterNET_Manager_MeetMeTalkingEventHandler.htm ├── T_AsterNET_Manager_MessageWaitingEventHandler.htm ├── T_AsterNET_Manager_NewCallerIdEventHandler.htm ├── T_AsterNET_Manager_NewChannelEventHandler.htm ├── T_AsterNET_Manager_NewExtenEventHandler.htm ├── T_AsterNET_Manager_NewStateEventHandler.htm ├── T_AsterNET_Manager_Originate.htm ├── T_AsterNET_Manager_OriginateResponseEventHandler.htm ├── T_AsterNET_Manager_ParkedCallEventHandler.htm ├── T_AsterNET_Manager_ParkedCallGiveUpEventHandler.htm ├── T_AsterNET_Manager_ParkedCallTimeOutEventHandler.htm ├── T_AsterNET_Manager_ParkedCallsCompleteEventHandler.htm ├── T_AsterNET_Manager_PeerEntryEventHandler.htm ├── T_AsterNET_Manager_PeerStatusEventHandler.htm ├── T_AsterNET_Manager_PeerlistCompleteEventHandler.htm ├── T_AsterNET_Manager_QueueCallerAbandonEventHandler.htm ├── T_AsterNET_Manager_QueueCallerJoinEventHandler.htm ├── T_AsterNET_Manager_QueueCallerLeaveEventHandler.htm ├── T_AsterNET_Manager_QueueEntryEventHandler.htm ├── T_AsterNET_Manager_QueueMemberAddedEventHandler.htm ├── T_AsterNET_Manager_QueueMemberEventHandler.htm ├── T_AsterNET_Manager_QueueMemberPauseEventHandler.htm ├── T_AsterNET_Manager_QueueMemberPausedEventHandler.htm ├── T_AsterNET_Manager_QueueMemberRemovedEventHandler.htm ├── T_AsterNET_Manager_QueueMemberStatusEventHandler.htm ├── T_AsterNET_Manager_QueueParamsEventHandler.htm ├── T_AsterNET_Manager_QueueStatusCompleteEventHandler.htm ├── T_AsterNET_Manager_RegistryEventHandler.htm ├── T_AsterNET_Manager_RenameEventHandler.htm ├── T_AsterNET_Manager_ResponseEventHandler.htm ├── T_AsterNET_Manager_ResponseEvents.htm ├── T_AsterNET_Manager_ResponseHandler.htm ├── T_AsterNET_Manager_Response_ChallengeResponse.htm ├── T_AsterNET_Manager_Response_CommandResponse.htm ├── T_AsterNET_Manager_Response_ExtensionStateResponse.htm ├── T_AsterNET_Manager_Response_GetConfigResponse.htm ├── T_AsterNET_Manager_Response_MailboxCountResponse.htm ├── T_AsterNET_Manager_Response_MailboxStatusResponse.htm ├── T_AsterNET_Manager_Response_ManagerError.htm ├── T_AsterNET_Manager_Response_ManagerResponse.htm ├── T_AsterNET_Manager_Response_OriginateResponse.htm ├── T_AsterNET_Manager_StatusCompleteEventHandler.htm ├── T_AsterNET_Manager_StatusEventHandler.htm ├── T_AsterNET_Manager_TimeoutException.htm ├── T_AsterNET_Manager_TransferEventHandler.htm ├── T_AsterNET_Manager_UnholdEventHandler.htm ├── T_AsterNET_Manager_UnlinkEventHandler.htm ├── T_AsterNET_Manager_UnparkedCallEventHandler.htm ├── T_AsterNET_Manager_UserEventHandler.htm ├── T_AsterNET_Manager_VarSetEventHandler.htm ├── T_AsterNET_Manager_ZapShowChannelsCompleteEventHandler.htm ├── T_AsterNET_Manager_ZapShowChannelsEventHandler.htm ├── T_AsterNET_Util_MD5Support.htm ├── T_AsterNET_Util_ThreadClass.htm ├── T_AsterNET_Util_ThreadPool.htm └── d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm ├── icons ├── AlertCaution.png ├── AlertNote.png ├── AlertSecurity.png ├── CFW.gif ├── CodeExample.png ├── Help.png ├── Search.png ├── SectionCollapsed.png ├── SectionExpanded.png ├── TocClose.gif ├── TocCollapsed.gif ├── TocExpanded.gif ├── TocOpen.gif ├── favicon.ico ├── privclass.gif ├── privdelegate.gif ├── privenumeration.gif ├── privevent.gif ├── privextension.gif ├── privfield.gif ├── privinterface.gif ├── privmethod.gif ├── privproperty.gif ├── privstructure.gif ├── protclass.gif ├── protdelegate.gif ├── protenumeration.gif ├── protevent.gif ├── protextension.gif ├── protfield.gif ├── protinterface.gif ├── protmethod.gif ├── protoperator.gif ├── protproperty.gif ├── protstructure.gif ├── pubclass.gif ├── pubdelegate.gif ├── pubenumeration.gif ├── pubevent.gif ├── pubextension.gif ├── pubfield.gif ├── pubinterface.gif ├── pubmethod.gif ├── puboperator.gif ├── pubproperty.gif ├── pubstructure.gif ├── slMobile.gif ├── static.gif └── xna.gif ├── index.html ├── scripts ├── branding-Website.js ├── branding.js └── jquery-1.11.0.min.js ├── search.html ├── styles ├── branding-Help1.css ├── branding-Help2.css ├── branding-HelpViewer.css ├── branding-Website.css ├── branding-cs-CZ.css ├── branding-de-DE.css ├── branding-en-US.css ├── branding-es-ES.css ├── branding-fr-FR.css ├── branding-it-IT.css ├── branding-ja-JP.css ├── branding-ko-KR.css ├── branding-pl-PL.css ├── branding-pt-BR.css ├── branding-ru-RU.css ├── branding-tr-TR.css ├── branding-zh-CN.css ├── branding-zh-TW.css └── branding.css └── toc ├── 100303f2-3dd8-401b-a594-579aae2a939c.xml ├── Events_T_AsterNET_Manager_ManagerConnection.xml ├── Fields_T_AsterNET_Common.xml ├── Fields_T_AsterNET_FastAGI_AsteriskFastAGI.xml ├── Fields_T_AsterNET_Manager_Action_CommandAction.xml ├── Fields_T_AsterNET_Manager_Action_SetVarAction.xml ├── Fields_T_AsterNET_Manager_Action_UpdateConfigAction.xml ├── Fields_T_AsterNET_Manager_Event_RenameEvent.xml ├── Fields_T_AsterNET_Manager_ManagerConnection.xml ├── Fields_T_AsterNET_Manager_Response_CommandResponse.xml ├── Fields_T_AsterNET_Manager_Response_ManagerResponse.xml ├── Methods_T_AsterNET_FastAGI_AGIChannel.xml ├── Methods_T_AsterNET_FastAGI_AGIConnectionHandler.xml ├── Methods_T_AsterNET_FastAGI_AGIReader.xml ├── Methods_T_AsterNET_FastAGI_AGIReply.xml ├── Methods_T_AsterNET_FastAGI_AGIRequest.xml ├── Methods_T_AsterNET_FastAGI_AGIScript.xml ├── Methods_T_AsterNET_FastAGI_AGIWriter.xml ├── Methods_T_AsterNET_FastAGI_AsteriskFastAGI.xml ├── Methods_T_AsterNET_FastAGI_Command_AGICommand.xml ├── Methods_T_AsterNET_FastAGI_Command_AnswerCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_ChannelStatusCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_DatabaseDelCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_DatabaseGetCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_DatabasePutCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_ExecCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_GetDataCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_GetFullVariableCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_GetOptionCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_GetVariableCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_HangupCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_NoopCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_ReceiveCharCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_ReceiveTextCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_RecordFileCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SayAlphaCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SayDateTimeCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SayDigitsCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SayNumberCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SayPhoneticCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SayTimeCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SendImageCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SendTextCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SetCallerIdCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SetContextCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SetExtensionCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SetMusicOffCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SetMusicOnCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SetPriorityCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_SetVariableCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_StreamFileCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_TDDModeCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_VerboseCommand.xml ├── Methods_T_AsterNET_FastAGI_Command_WaitForDigitCommand.xml ├── Methods_T_AsterNET_FastAGI_IMappingStrategy.xml ├── Methods_T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.xml ├── Methods_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.xml ├── Methods_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.xml ├── Methods_T_AsterNET_FastAGI_MappingStrategy.xml ├── Methods_T_AsterNET_IO_ServerSocket.xml ├── Methods_T_AsterNET_IO_SocketConnection.xml ├── Methods_T_AsterNET_Logger.xml ├── Methods_T_AsterNET_Manager_Action_AgentsAction.xml ├── Methods_T_AsterNET_Manager_Action_ConfbridgeListAction.xml ├── Methods_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.xml ├── Methods_T_AsterNET_Manager_Action_DBGetAction.xml ├── Methods_T_AsterNET_Manager_Action_GetConfigAction.xml ├── Methods_T_AsterNET_Manager_Action_ManagerAction.xml ├── Methods_T_AsterNET_Manager_Action_ManagerActionEvent.xml ├── Methods_T_AsterNET_Manager_Action_ManagerActionResponse.xml ├── Methods_T_AsterNET_Manager_Action_OriginateAction.xml ├── Methods_T_AsterNET_Manager_Action_ParkedCallsAction.xml ├── Methods_T_AsterNET_Manager_Action_QueueStatusAction.xml ├── Methods_T_AsterNET_Manager_Action_SIPPeersAction.xml ├── Methods_T_AsterNET_Manager_Action_SIPShowPeerAction.xml ├── Methods_T_AsterNET_Manager_Action_StatusAction.xml ├── Methods_T_AsterNET_Manager_Action_UpdateConfigAction.xml ├── Methods_T_AsterNET_Manager_Action_ZapShowChannelsAction.xml ├── Methods_T_AsterNET_Manager_Event_AbstractAgentVariables.xml ├── Methods_T_AsterNET_Manager_Event_BridgeEvent.xml ├── Methods_T_AsterNET_Manager_Event_ManagerEvent.xml ├── Methods_T_AsterNET_Manager_Event_UserEvent.xml ├── Methods_T_AsterNET_Manager_IResponseHandler.xml ├── Methods_T_AsterNET_Manager_ManagerConnection.xml ├── Methods_T_AsterNET_Manager_Originate.xml ├── Methods_T_AsterNET_Manager_ResponseEventHandler.xml ├── Methods_T_AsterNET_Manager_ResponseEvents.xml ├── Methods_T_AsterNET_Manager_ResponseHandler.xml ├── Methods_T_AsterNET_Manager_Response_GetConfigResponse.xml ├── Methods_T_AsterNET_Manager_Response_ManagerResponse.xml ├── Methods_T_AsterNET_Manager_Response_OriginateResponse.xml ├── Methods_T_AsterNET_Util_MD5Support.xml ├── Methods_T_AsterNET_Util_ThreadClass.xml ├── Methods_T_AsterNET_Util_ThreadPool.xml ├── N_AsterNET.xml ├── N_AsterNET_FastAGI.xml ├── N_AsterNET_FastAGI_Command.xml ├── N_AsterNET_FastAGI_MappingStrategies.xml ├── N_AsterNET_IO.xml ├── N_AsterNET_Manager.xml ├── N_AsterNET_Manager_Action.xml ├── N_AsterNET_Manager_Event.xml ├── N_AsterNET_Manager_Response.xml ├── N_AsterNET_Util.xml ├── Overload_AsterNET_FastAGI_AGIChannel__ctor.xml ├── Overload_AsterNET_FastAGI_AGIException__ctor.xml ├── Overload_AsterNET_FastAGI_AGIReply__ctor.xml ├── Overload_AsterNET_FastAGI_AGIScript_ControlStreamFile.xml ├── Overload_AsterNET_FastAGI_AGIScript_DatabaseDelTree.xml ├── Overload_AsterNET_FastAGI_AGIScript_Exec.xml ├── Overload_AsterNET_FastAGI_AGIScript_GetData.xml ├── Overload_AsterNET_FastAGI_AGIScript_GetFullVariable.xml ├── Overload_AsterNET_FastAGI_AGIScript_GetOption.xml ├── Overload_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.xml ├── Overload_AsterNET_FastAGI_AGIScript_RecordFile.xml ├── Overload_AsterNET_FastAGI_AGIScript_SayAlpha.xml ├── Overload_AsterNET_FastAGI_AGIScript_SayDateTime.xml ├── Overload_AsterNET_FastAGI_AGIScript_SayDigits.xml ├── Overload_AsterNET_FastAGI_AGIScript_SayNumber.xml ├── Overload_AsterNET_FastAGI_AGIScript_SayPhonetic.xml ├── Overload_AsterNET_FastAGI_AGIScript_SayTime.xml ├── Overload_AsterNET_FastAGI_AGIScript_SetPriority.xml ├── Overload_AsterNET_FastAGI_AGIScript_StreamFile.xml ├── Overload_AsterNET_FastAGI_AsteriskFastAGI__ctor.xml ├── Overload_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.xml ├── Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_ExecCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_GetDataCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_GetOptionCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_HangupCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_RecordFileCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_SayNumberCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_SayTimeCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_StreamFileCommand__ctor.xml ├── Overload_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.xml ├── Overload_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.xml ├── Overload_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.xml ├── Overload_AsterNET_FastAGI_MappingStrategy__ctor.xml ├── Overload_AsterNET_Logger_Debug.xml ├── Overload_AsterNET_Logger_Error.xml ├── Overload_AsterNET_Logger_Info.xml ├── Overload_AsterNET_Logger_Visible.xml ├── Overload_AsterNET_Logger_Warning.xml ├── Overload_AsterNET_Manager_Action_AOCMessageAction__ctor.xml ├── Overload_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.xml ├── Overload_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.xml ├── Overload_AsterNET_Manager_Action_AgentLogoffAction__ctor.xml ├── Overload_AsterNET_Manager_Action_AtxferAction__ctor.xml ├── Overload_AsterNET_Manager_Action_BridgeAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ChallengeAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ChangeMonitorAction__ctor.xml ├── Overload_AsterNET_Manager_Action_CommandAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.xml ├── Overload_AsterNET_Manager_Action_CreateConfigAction__ctor.xml ├── Overload_AsterNET_Manager_Action_DBDelAction__ctor.xml ├── Overload_AsterNET_Manager_Action_DBDelTreeAction__ctor.xml ├── Overload_AsterNET_Manager_Action_DBGetAction__ctor.xml ├── Overload_AsterNET_Manager_Action_DBPutAction__ctor.xml ├── Overload_AsterNET_Manager_Action_EventsAction__ctor.xml ├── Overload_AsterNET_Manager_Action_GetConfigAction__ctor.xml ├── Overload_AsterNET_Manager_Action_GetVarAction__ctor.xml ├── Overload_AsterNET_Manager_Action_HangupAction__ctor.xml ├── Overload_AsterNET_Manager_Action_LoginAction__ctor.xml ├── Overload_AsterNET_Manager_Action_MailboxCountAction__ctor.xml ├── Overload_AsterNET_Manager_Action_MailboxStatusAction__ctor.xml ├── Overload_AsterNET_Manager_Action_MonitorAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ParkAction__ctor.xml ├── Overload_AsterNET_Manager_Action_QueueAddAction__ctor.xml ├── Overload_AsterNET_Manager_Action_QueueLogAction__ctor.xml ├── Overload_AsterNET_Manager_Action_QueuePauseAction__ctor.xml ├── Overload_AsterNET_Manager_Action_QueuePenaltyAction__ctor.xml ├── Overload_AsterNET_Manager_Action_QueueReloadAction__ctor.xml ├── Overload_AsterNET_Manager_Action_QueueRemoveAction__ctor.xml ├── Overload_AsterNET_Manager_Action_QueueResetAction__ctor.xml ├── Overload_AsterNET_Manager_Action_QueueRuleAction__ctor.xml ├── Overload_AsterNET_Manager_Action_RedirectAction__ctor.xml ├── Overload_AsterNET_Manager_Action_SIPShowPeerAction__ctor.xml ├── Overload_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.xml ├── Overload_AsterNET_Manager_Action_SetVarAction__ctor.xml ├── Overload_AsterNET_Manager_Action_StopMonitorAction__ctor.xml ├── Overload_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.xml ├── Overload_AsterNET_Manager_Action_UpdateConfigAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ZapDNDOffAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ZapDNDOnAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.xml ├── Overload_AsterNET_Manager_Action_ZapHangupAction__ctor.xml ├── Overload_AsterNET_Manager_AuthenticationFailedException__ctor.xml ├── Overload_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.xml ├── Overload_AsterNET_Manager_Event_FailedACLEvent__ctor.xml ├── Overload_AsterNET_Manager_Event_ManagerEvent__ctor.xml ├── Overload_AsterNET_Manager_ManagerConnection_BuildAction.xml ├── Overload_AsterNET_Manager_ManagerConnection_Login.xml ├── Overload_AsterNET_Manager_ManagerConnection_SendAction.xml ├── Overload_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.xml ├── Overload_AsterNET_Manager_ManagerConnection__ctor.xml ├── Overload_AsterNET_Manager_ManagerException__ctor.xml ├── Overload_AsterNET_Manager_Response_ManagerError__ctor.xml ├── Overload_AsterNET_Manager_Response_ManagerResponse__ctor.xml ├── Overload_AsterNET_Util_MD5Support_GetInstance.xml ├── Overload_AsterNET_Util_ThreadClass__ctor.xml ├── Properties_T_AsterNET_FastAGI_AGIChannel.xml ├── Properties_T_AsterNET_FastAGI_AGIReply.xml ├── Properties_T_AsterNET_FastAGI_AGIRequest.xml ├── Properties_T_AsterNET_FastAGI_AGIScript.xml ├── Properties_T_AsterNET_FastAGI_AsteriskFastAGI.xml ├── Properties_T_AsterNET_FastAGI_Command_ChannelStatusCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_DatabaseDelCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_DatabaseGetCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_DatabasePutCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_ExecCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_GetDataCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_GetFullVariableCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_GetOptionCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_GetVariableCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_HangupCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_ReceiveCharCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_ReceiveTextCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_RecordFileCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SayAlphaCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SayDateTimeCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SayDigitsCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SayNumberCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SayPhoneticCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SayTimeCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SendImageCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SendTextCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SetCallerIdCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SetContextCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SetExtensionCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SetMusicOnCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SetPriorityCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_SetVariableCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_StreamFileCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_TDDModeCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_VerboseCommand.xml ├── Properties_T_AsterNET_FastAGI_Command_WaitForDigitCommand.xml ├── Properties_T_AsterNET_FastAGI_InvalidCommandSyntaxException.xml ├── Properties_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.xml ├── Properties_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.xml ├── Properties_T_AsterNET_FastAGI_MappingStrategy.xml ├── Properties_T_AsterNET_IO_SocketConnection.xml ├── Properties_T_AsterNET_Manager_Action_AOCMessageAction.xml ├── Properties_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.xml ├── Properties_T_AsterNET_Manager_Action_AgentCallbackLoginAction.xml ├── Properties_T_AsterNET_Manager_Action_AgentLogoffAction.xml ├── Properties_T_AsterNET_Manager_Action_AgentsAction.xml ├── Properties_T_AsterNET_Manager_Action_AgiAction.xml ├── Properties_T_AsterNET_Manager_Action_AtxferAction.xml ├── Properties_T_AsterNET_Manager_Action_BridgeAction.xml ├── Properties_T_AsterNET_Manager_Action_ChallengeAction.xml ├── Properties_T_AsterNET_Manager_Action_ChangeMonitorAction.xml ├── Properties_T_AsterNET_Manager_Action_CommandAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeKickAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeListAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeLockAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeMuteAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.xml ├── Properties_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.xml ├── Properties_T_AsterNET_Manager_Action_CoreSettingsAction.xml ├── Properties_T_AsterNET_Manager_Action_CoreShowChannelsAction.xml ├── Properties_T_AsterNET_Manager_Action_CoreStatusAction.xml ├── Properties_T_AsterNET_Manager_Action_CreateConfigAction.xml ├── Properties_T_AsterNET_Manager_Action_DBDelAction.xml ├── Properties_T_AsterNET_Manager_Action_DBDelTreeAction.xml ├── Properties_T_AsterNET_Manager_Action_DBGetAction.xml ├── Properties_T_AsterNET_Manager_Action_DBPutAction.xml ├── Properties_T_AsterNET_Manager_Action_EventsAction.xml ├── Properties_T_AsterNET_Manager_Action_ExtensionStateAction.xml ├── Properties_T_AsterNET_Manager_Action_GetConfigAction.xml ├── Properties_T_AsterNET_Manager_Action_GetVarAction.xml ├── Properties_T_AsterNET_Manager_Action_HangupAction.xml ├── Properties_T_AsterNET_Manager_Action_LoginAction.xml ├── Properties_T_AsterNET_Manager_Action_LogoffAction.xml ├── Properties_T_AsterNET_Manager_Action_MailboxCountAction.xml ├── Properties_T_AsterNET_Manager_Action_MailboxStatusAction.xml ├── Properties_T_AsterNET_Manager_Action_ManagerAction.xml ├── Properties_T_AsterNET_Manager_Action_MonitorAction.xml ├── Properties_T_AsterNET_Manager_Action_OriginateAction.xml ├── Properties_T_AsterNET_Manager_Action_ParkAction.xml ├── Properties_T_AsterNET_Manager_Action_ParkedCallsAction.xml ├── Properties_T_AsterNET_Manager_Action_PingAction.xml ├── Properties_T_AsterNET_Manager_Action_QueueAddAction.xml ├── Properties_T_AsterNET_Manager_Action_QueueLogAction.xml ├── Properties_T_AsterNET_Manager_Action_QueuePauseAction.xml ├── Properties_T_AsterNET_Manager_Action_QueuePenaltyAction.xml ├── Properties_T_AsterNET_Manager_Action_QueueReloadAction.xml ├── Properties_T_AsterNET_Manager_Action_QueueRemoveAction.xml ├── Properties_T_AsterNET_Manager_Action_QueueResetAction.xml ├── Properties_T_AsterNET_Manager_Action_QueueRuleAction.xml ├── Properties_T_AsterNET_Manager_Action_QueueStatusAction.xml ├── Properties_T_AsterNET_Manager_Action_RedirectAction.xml ├── Properties_T_AsterNET_Manager_Action_SIPPeersAction.xml ├── Properties_T_AsterNET_Manager_Action_SIPShowPeerAction.xml ├── Properties_T_AsterNET_Manager_Action_SetCDRUserFieldAction.xml ├── Properties_T_AsterNET_Manager_Action_SetVarAction.xml ├── Properties_T_AsterNET_Manager_Action_StatusAction.xml ├── Properties_T_AsterNET_Manager_Action_StopMonitorAction.xml ├── Properties_T_AsterNET_Manager_Action_UpdateConfigAction.xml ├── Properties_T_AsterNET_Manager_Action_ZapDNDOffAction.xml ├── Properties_T_AsterNET_Manager_Action_ZapDNDOnAction.xml ├── Properties_T_AsterNET_Manager_Action_ZapDialOffhookAction.xml ├── Properties_T_AsterNET_Manager_Action_ZapHangupAction.xml ├── Properties_T_AsterNET_Manager_Action_ZapShowChannelsAction.xml ├── Properties_T_AsterNET_Manager_Action_ZapTransferAction.xml ├── Properties_T_AsterNET_Manager_EventTimeoutException.xml ├── Properties_T_AsterNET_Manager_Event_AGIExecEvent.xml ├── Properties_T_AsterNET_Manager_Event_AbstractAgentEvent.xml ├── Properties_T_AsterNET_Manager_Event_AbstractAgentVariables.xml ├── Properties_T_AsterNET_Manager_Event_AbstractChannelEvent.xml ├── Properties_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.xml ├── Properties_T_AsterNET_Manager_Event_AbstractMeetmeEvent.xml ├── Properties_T_AsterNET_Manager_Event_AbstractParkedCallEvent.xml ├── Properties_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.xml ├── Properties_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.xml ├── Properties_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.xml ├── Properties_T_AsterNET_Manager_Event_AgentCalledEvent.xml ├── Properties_T_AsterNET_Manager_Event_AgentCompleteEvent.xml ├── Properties_T_AsterNET_Manager_Event_AgentConnectEvent.xml ├── Properties_T_AsterNET_Manager_Event_AgentLoginEvent.xml ├── Properties_T_AsterNET_Manager_Event_AgentLogoffEvent.xml ├── Properties_T_AsterNET_Manager_Event_AgentsEvent.xml ├── Properties_T_AsterNET_Manager_Event_AlarmEvent.xml ├── Properties_T_AsterNET_Manager_Event_AsyncAGIEvent.xml ├── Properties_T_AsterNET_Manager_Event_AttendedTransferEvent.xml ├── Properties_T_AsterNET_Manager_Event_BlindTransferEvent.xml ├── Properties_T_AsterNET_Manager_Event_BridgeActivityEvent.xml ├── Properties_T_AsterNET_Manager_Event_BridgeEvent.xml ├── Properties_T_AsterNET_Manager_Event_BridgeStateEvent.xml ├── Properties_T_AsterNET_Manager_Event_CdrEvent.xml ├── Properties_T_AsterNET_Manager_Event_ChannelReloadEvent.xml ├── Properties_T_AsterNET_Manager_Event_ChannelUpdateEvent.xml ├── Properties_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.xml ├── Properties_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.xml ├── Properties_T_AsterNET_Manager_Event_ConfbridgeListEvent.xml ├── Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.xml ├── Properties_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.xml ├── Properties_T_AsterNET_Manager_Event_ConnectEvent.xml ├── Properties_T_AsterNET_Manager_Event_ConnectionStateEvent.xml ├── Properties_T_AsterNET_Manager_Event_DBGetResponseEvent.xml ├── Properties_T_AsterNET_Manager_Event_DNDStateEvent.xml ├── Properties_T_AsterNET_Manager_Event_DTMFEvent.xml ├── Properties_T_AsterNET_Manager_Event_DialEndEvent.xml ├── Properties_T_AsterNET_Manager_Event_DialEvent.xml ├── Properties_T_AsterNET_Manager_Event_ExtensionStatusEvent.xml ├── Properties_T_AsterNET_Manager_Event_FailedACLEvent.xml ├── Properties_T_AsterNET_Manager_Event_FaxReceivedEvent.xml ├── Properties_T_AsterNET_Manager_Event_HangupEvent.xml ├── Properties_T_AsterNET_Manager_Event_HoldEvent.xml ├── Properties_T_AsterNET_Manager_Event_HoldedCallEvent.xml ├── Properties_T_AsterNET_Manager_Event_JabberEvent.xml ├── Properties_T_AsterNET_Manager_Event_JitterBufStatsEvent.xml ├── Properties_T_AsterNET_Manager_Event_JoinEvent.xml ├── Properties_T_AsterNET_Manager_Event_LogChannelEvent.xml ├── Properties_T_AsterNET_Manager_Event_ManagerEvent.xml ├── Properties_T_AsterNET_Manager_Event_MeetmeJoinEvent.xml ├── Properties_T_AsterNET_Manager_Event_MeetmeLeaveEvent.xml ├── Properties_T_AsterNET_Manager_Event_MeetmeMuteEvent.xml ├── Properties_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.xml ├── Properties_T_AsterNET_Manager_Event_MeetmeTalkingEvent.xml ├── Properties_T_AsterNET_Manager_Event_MessageWaitingEvent.xml ├── Properties_T_AsterNET_Manager_Event_MobileStatusEvent.xml ├── Properties_T_AsterNET_Manager_Event_ModuleLoadReportEvent.xml ├── Properties_T_AsterNET_Manager_Event_NewAccountCodeEvent.xml ├── Properties_T_AsterNET_Manager_Event_NewCallerIdEvent.xml ├── Properties_T_AsterNET_Manager_Event_NewExtenEvent.xml ├── Properties_T_AsterNET_Manager_Event_OriginateResponseEvent.xml ├── Properties_T_AsterNET_Manager_Event_PRIEvent.xml ├── Properties_T_AsterNET_Manager_Event_ParkedCallEvent.xml ├── Properties_T_AsterNET_Manager_Event_PeerEntryEvent.xml ├── Properties_T_AsterNET_Manager_Event_PeerStatusEvent.xml ├── Properties_T_AsterNET_Manager_Event_PeerlistCompleteEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueCallerJoinEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueEntryEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueMemberAddedEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueMemberEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueMemberPauseEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueMemberPausedEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueMemberStatusEvent.xml ├── Properties_T_AsterNET_Manager_Event_QueueParamsEvent.xml ├── Properties_T_AsterNET_Manager_Event_RTCPReceivedEvent.xml ├── Properties_T_AsterNET_Manager_Event_RTCPSentEvent.xml ├── Properties_T_AsterNET_Manager_Event_RTPReceiverStatEvent.xml ├── Properties_T_AsterNET_Manager_Event_RTPSenderStatEvent.xml ├── Properties_T_AsterNET_Manager_Event_RegistryEvent.xml ├── Properties_T_AsterNET_Manager_Event_ReloadEvent.xml ├── Properties_T_AsterNET_Manager_Event_RenameEvent.xml ├── Properties_T_AsterNET_Manager_Event_ResponseEvent.xml ├── Properties_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.xml ├── Properties_T_AsterNET_Manager_Event_ShutdownEvent.xml ├── Properties_T_AsterNET_Manager_Event_StatusCompleteEvent.xml ├── Properties_T_AsterNET_Manager_Event_StatusEvent.xml ├── Properties_T_AsterNET_Manager_Event_TransferEvent.xml ├── Properties_T_AsterNET_Manager_Event_UnparkedCallEvent.xml ├── Properties_T_AsterNET_Manager_Event_UserEvent.xml ├── Properties_T_AsterNET_Manager_Event_VarSetEvent.xml ├── Properties_T_AsterNET_Manager_Event_ZapShowChannelsEvent.xml ├── Properties_T_AsterNET_Manager_IResponseHandler.xml ├── Properties_T_AsterNET_Manager_ManagerConnection.xml ├── Properties_T_AsterNET_Manager_Originate.xml ├── Properties_T_AsterNET_Manager_ResponseEventHandler.xml ├── Properties_T_AsterNET_Manager_ResponseEvents.xml ├── Properties_T_AsterNET_Manager_ResponseHandler.xml ├── Properties_T_AsterNET_Manager_Response_ChallengeResponse.xml ├── Properties_T_AsterNET_Manager_Response_CommandResponse.xml ├── Properties_T_AsterNET_Manager_Response_ExtensionStateResponse.xml ├── Properties_T_AsterNET_Manager_Response_GetConfigResponse.xml ├── Properties_T_AsterNET_Manager_Response_MailboxCountResponse.xml ├── Properties_T_AsterNET_Manager_Response_MailboxStatusResponse.xml ├── Properties_T_AsterNET_Manager_Response_ManagerResponse.xml ├── Properties_T_AsterNET_Manager_Response_OriginateResponse.xml ├── Properties_T_AsterNET_Util_MD5Support.xml ├── Properties_T_AsterNET_Util_ThreadClass.xml ├── T_AsterNET_Common.xml ├── T_AsterNET_FastAGI_AGIChannel.xml ├── T_AsterNET_FastAGI_AGIConnectionHandler.xml ├── T_AsterNET_FastAGI_AGIException.xml ├── T_AsterNET_FastAGI_AGIHangupException.xml ├── T_AsterNET_FastAGI_AGINetworkException.xml ├── T_AsterNET_FastAGI_AGIReader.xml ├── T_AsterNET_FastAGI_AGIReply.xml ├── T_AsterNET_FastAGI_AGIRequest.xml ├── T_AsterNET_FastAGI_AGIScript.xml ├── T_AsterNET_FastAGI_AGIWriter.xml ├── T_AsterNET_FastAGI_AsteriskFastAGI.xml ├── T_AsterNET_FastAGI_Command_AGICommand.xml ├── T_AsterNET_FastAGI_Command_AnswerCommand.xml ├── T_AsterNET_FastAGI_Command_ChannelStatusCommand.xml ├── T_AsterNET_FastAGI_Command_ControlStreamFileCommand.xml ├── T_AsterNET_FastAGI_Command_DatabaseDelCommand.xml ├── T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.xml ├── T_AsterNET_FastAGI_Command_DatabaseGetCommand.xml ├── T_AsterNET_FastAGI_Command_DatabasePutCommand.xml ├── T_AsterNET_FastAGI_Command_ExecCommand.xml ├── T_AsterNET_FastAGI_Command_GetDataCommand.xml ├── T_AsterNET_FastAGI_Command_GetFullVariableCommand.xml ├── T_AsterNET_FastAGI_Command_GetOptionCommand.xml ├── T_AsterNET_FastAGI_Command_GetVariableCommand.xml ├── T_AsterNET_FastAGI_Command_HangupCommand.xml ├── T_AsterNET_FastAGI_Command_NoopCommand.xml ├── T_AsterNET_FastAGI_Command_ReceiveCharCommand.xml ├── T_AsterNET_FastAGI_Command_ReceiveTextCommand.xml ├── T_AsterNET_FastAGI_Command_RecordFileCommand.xml ├── T_AsterNET_FastAGI_Command_SayAlphaCommand.xml ├── T_AsterNET_FastAGI_Command_SayDateTimeCommand.xml ├── T_AsterNET_FastAGI_Command_SayDigitsCommand.xml ├── T_AsterNET_FastAGI_Command_SayNumberCommand.xml ├── T_AsterNET_FastAGI_Command_SayPhoneticCommand.xml ├── T_AsterNET_FastAGI_Command_SayTimeCommand.xml ├── T_AsterNET_FastAGI_Command_SendImageCommand.xml ├── T_AsterNET_FastAGI_Command_SendTextCommand.xml ├── T_AsterNET_FastAGI_Command_SetAutoHangupCommand.xml ├── T_AsterNET_FastAGI_Command_SetCallerIdCommand.xml ├── T_AsterNET_FastAGI_Command_SetContextCommand.xml ├── T_AsterNET_FastAGI_Command_SetExtensionCommand.xml ├── T_AsterNET_FastAGI_Command_SetMusicOffCommand.xml ├── T_AsterNET_FastAGI_Command_SetMusicOnCommand.xml ├── T_AsterNET_FastAGI_Command_SetPriorityCommand.xml ├── T_AsterNET_FastAGI_Command_SetVariableCommand.xml ├── T_AsterNET_FastAGI_Command_StreamFileCommand.xml ├── T_AsterNET_FastAGI_Command_TDDModeCommand.xml ├── T_AsterNET_FastAGI_Command_VerboseCommand.xml ├── T_AsterNET_FastAGI_Command_WaitForDigitCommand.xml ├── T_AsterNET_FastAGI_IMappingStrategy.xml ├── T_AsterNET_FastAGI_InvalidCommandSyntaxException.xml ├── T_AsterNET_FastAGI_InvalidOrUnknownCommandException.xml ├── T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.xml ├── T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.xml ├── T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.xml ├── T_AsterNET_FastAGI_MappingStrategy.xml ├── T_AsterNET_IO_ServerSocket.xml ├── T_AsterNET_IO_SocketConnection.xml ├── T_AsterNET_Logger.xml ├── T_AsterNET_Manager_Action_AOCMessageAction.xml ├── T_AsterNET_Manager_Action_AbsoluteTimeoutAction.xml ├── T_AsterNET_Manager_Action_AgentCallbackLoginAction.xml ├── T_AsterNET_Manager_Action_AgentLogoffAction.xml ├── T_AsterNET_Manager_Action_AgentsAction.xml ├── T_AsterNET_Manager_Action_AgiAction.xml ├── T_AsterNET_Manager_Action_AtxferAction.xml ├── T_AsterNET_Manager_Action_BridgeAction.xml ├── T_AsterNET_Manager_Action_ChallengeAction.xml ├── T_AsterNET_Manager_Action_ChangeMonitorAction.xml ├── T_AsterNET_Manager_Action_CommandAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeKickAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeListAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeLockAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeMuteAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeUnlockAction.xml ├── T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.xml ├── T_AsterNET_Manager_Action_CoreSettingsAction.xml ├── T_AsterNET_Manager_Action_CoreShowChannelsAction.xml ├── T_AsterNET_Manager_Action_CoreStatusAction.xml ├── T_AsterNET_Manager_Action_CreateConfigAction.xml ├── T_AsterNET_Manager_Action_DBDelAction.xml ├── T_AsterNET_Manager_Action_DBDelTreeAction.xml ├── T_AsterNET_Manager_Action_DBGetAction.xml ├── T_AsterNET_Manager_Action_DBPutAction.xml ├── T_AsterNET_Manager_Action_EventsAction.xml ├── T_AsterNET_Manager_Action_ExtensionStateAction.xml ├── T_AsterNET_Manager_Action_GetConfigAction.xml ├── T_AsterNET_Manager_Action_GetVarAction.xml ├── T_AsterNET_Manager_Action_HangupAction.xml ├── T_AsterNET_Manager_Action_LoginAction.xml ├── T_AsterNET_Manager_Action_LogoffAction.xml ├── T_AsterNET_Manager_Action_MailboxCountAction.xml ├── T_AsterNET_Manager_Action_MailboxStatusAction.xml ├── T_AsterNET_Manager_Action_ManagerAction.xml ├── T_AsterNET_Manager_Action_ManagerActionEvent.xml ├── T_AsterNET_Manager_Action_ManagerActionResponse.xml ├── T_AsterNET_Manager_Action_MonitorAction.xml ├── T_AsterNET_Manager_Action_OriginateAction.xml ├── T_AsterNET_Manager_Action_ParkAction.xml ├── T_AsterNET_Manager_Action_ParkedCallsAction.xml ├── T_AsterNET_Manager_Action_PingAction.xml ├── T_AsterNET_Manager_Action_ProxyAction.xml ├── T_AsterNET_Manager_Action_QueueAddAction.xml ├── T_AsterNET_Manager_Action_QueueLogAction.xml ├── T_AsterNET_Manager_Action_QueuePauseAction.xml ├── T_AsterNET_Manager_Action_QueuePenaltyAction.xml ├── T_AsterNET_Manager_Action_QueueReloadAction.xml ├── T_AsterNET_Manager_Action_QueueRemoveAction.xml ├── T_AsterNET_Manager_Action_QueueResetAction.xml ├── T_AsterNET_Manager_Action_QueueRuleAction.xml ├── T_AsterNET_Manager_Action_QueueStatusAction.xml ├── T_AsterNET_Manager_Action_RedirectAction.xml ├── T_AsterNET_Manager_Action_SIPPeersAction.xml ├── T_AsterNET_Manager_Action_SIPShowPeerAction.xml ├── T_AsterNET_Manager_Action_SetCDRUserFieldAction.xml ├── T_AsterNET_Manager_Action_SetVarAction.xml ├── T_AsterNET_Manager_Action_StatusAction.xml ├── T_AsterNET_Manager_Action_StopMonitorAction.xml ├── T_AsterNET_Manager_Action_UpdateConfigAction.xml ├── T_AsterNET_Manager_Action_ZapDNDOffAction.xml ├── T_AsterNET_Manager_Action_ZapDNDOnAction.xml ├── T_AsterNET_Manager_Action_ZapDialOffhookAction.xml ├── T_AsterNET_Manager_Action_ZapHangupAction.xml ├── T_AsterNET_Manager_Action_ZapShowChannelsAction.xml ├── T_AsterNET_Manager_Action_ZapTransferAction.xml ├── T_AsterNET_Manager_AuthenticationFailedException.xml ├── T_AsterNET_Manager_EventTimeoutException.xml ├── T_AsterNET_Manager_Event_AGIExecEvent.xml ├── T_AsterNET_Manager_Event_AbstractAgentEvent.xml ├── T_AsterNET_Manager_Event_AbstractAgentVariables.xml ├── T_AsterNET_Manager_Event_AbstractChannelEvent.xml ├── T_AsterNET_Manager_Event_AbstractConfbridgeEvent.xml ├── T_AsterNET_Manager_Event_AbstractMeetmeEvent.xml ├── T_AsterNET_Manager_Event_AbstractParkedCallEvent.xml ├── T_AsterNET_Manager_Event_AbstractQueueMemberEvent.xml ├── T_AsterNET_Manager_Event_AgentCallbackLoginEvent.xml ├── T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.xml ├── T_AsterNET_Manager_Event_AgentCalledEvent.xml ├── T_AsterNET_Manager_Event_AgentCompleteEvent.xml ├── T_AsterNET_Manager_Event_AgentConnectEvent.xml ├── T_AsterNET_Manager_Event_AgentDumpEvent.xml ├── T_AsterNET_Manager_Event_AgentLoginEvent.xml ├── T_AsterNET_Manager_Event_AgentLogoffEvent.xml ├── T_AsterNET_Manager_Event_AgentsCompleteEvent.xml ├── T_AsterNET_Manager_Event_AgentsEvent.xml ├── T_AsterNET_Manager_Event_AlarmClearEvent.xml ├── T_AsterNET_Manager_Event_AlarmEvent.xml ├── T_AsterNET_Manager_Event_AsyncAGIEvent.xml ├── T_AsterNET_Manager_Event_AttendedTransferEvent.xml ├── T_AsterNET_Manager_Event_BlindTransferEvent.xml ├── T_AsterNET_Manager_Event_BridgeActivityEvent.xml ├── T_AsterNET_Manager_Event_BridgeCreateEvent.xml ├── T_AsterNET_Manager_Event_BridgeDestroyEvent.xml ├── T_AsterNET_Manager_Event_BridgeEnterEvent.xml ├── T_AsterNET_Manager_Event_BridgeEvent.xml ├── T_AsterNET_Manager_Event_BridgeLeaveEvent.xml ├── T_AsterNET_Manager_Event_BridgeStateEvent.xml ├── T_AsterNET_Manager_Event_CdrEvent.xml ├── T_AsterNET_Manager_Event_ChannelReloadEvent.xml ├── T_AsterNET_Manager_Event_ChannelUpdateEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeEndEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeJoinEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeListEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeStartEvent.xml ├── T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.xml ├── T_AsterNET_Manager_Event_ConnectEvent.xml ├── T_AsterNET_Manager_Event_ConnectionStateEvent.xml ├── T_AsterNET_Manager_Event_DBGetResponseEvent.xml ├── T_AsterNET_Manager_Event_DNDStateEvent.xml ├── T_AsterNET_Manager_Event_DTMFEvent.xml ├── T_AsterNET_Manager_Event_DialBeginEvent.xml ├── T_AsterNET_Manager_Event_DialEndEvent.xml ├── T_AsterNET_Manager_Event_DialEvent.xml ├── T_AsterNET_Manager_Event_DisconnectEvent.xml ├── T_AsterNET_Manager_Event_ExtensionStatusEvent.xml ├── T_AsterNET_Manager_Event_FailedACLEvent.xml ├── T_AsterNET_Manager_Event_FaxReceivedEvent.xml ├── T_AsterNET_Manager_Event_HangupEvent.xml ├── T_AsterNET_Manager_Event_HoldEvent.xml ├── T_AsterNET_Manager_Event_HoldedCallEvent.xml ├── T_AsterNET_Manager_Event_JabberEvent.xml ├── T_AsterNET_Manager_Event_JitterBufStatsEvent.xml ├── T_AsterNET_Manager_Event_JoinEvent.xml ├── T_AsterNET_Manager_Event_LeaveEvent.xml ├── T_AsterNET_Manager_Event_LinkEvent.xml ├── T_AsterNET_Manager_Event_LogChannelEvent.xml ├── T_AsterNET_Manager_Event_ManagerEvent.xml ├── T_AsterNET_Manager_Event_MeetmeEndEvent.xml ├── T_AsterNET_Manager_Event_MeetmeJoinEvent.xml ├── T_AsterNET_Manager_Event_MeetmeLeaveEvent.xml ├── T_AsterNET_Manager_Event_MeetmeMuteEvent.xml ├── T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.xml ├── T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.xml ├── T_AsterNET_Manager_Event_MeetmeTalkingEvent.xml ├── T_AsterNET_Manager_Event_MessageWaitingEvent.xml ├── T_AsterNET_Manager_Event_MobileStatusEvent.xml ├── T_AsterNET_Manager_Event_ModuleLoadReportEvent.xml ├── T_AsterNET_Manager_Event_MonitorStartEvent.xml ├── T_AsterNET_Manager_Event_MonitorStopEvent.xml ├── T_AsterNET_Manager_Event_NewAccountCodeEvent.xml ├── T_AsterNET_Manager_Event_NewCallerIdEvent.xml ├── T_AsterNET_Manager_Event_NewChannelEvent.xml ├── T_AsterNET_Manager_Event_NewExtenEvent.xml ├── T_AsterNET_Manager_Event_NewStateEvent.xml ├── T_AsterNET_Manager_Event_OriginateResponseEvent.xml ├── T_AsterNET_Manager_Event_PRIEvent.xml ├── T_AsterNET_Manager_Event_ParkedCallEvent.xml ├── T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.xml ├── T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.xml ├── T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.xml ├── T_AsterNET_Manager_Event_PeerEntryEvent.xml ├── T_AsterNET_Manager_Event_PeerStatusEvent.xml ├── T_AsterNET_Manager_Event_PeerlistCompleteEvent.xml ├── T_AsterNET_Manager_Event_QueueCallerAbandonEvent.xml ├── T_AsterNET_Manager_Event_QueueCallerJoinEvent.xml ├── T_AsterNET_Manager_Event_QueueCallerLeaveEvent.xml ├── T_AsterNET_Manager_Event_QueueEntryEvent.xml ├── T_AsterNET_Manager_Event_QueueEvent.xml ├── T_AsterNET_Manager_Event_QueueMemberAddedEvent.xml ├── T_AsterNET_Manager_Event_QueueMemberEvent.xml ├── T_AsterNET_Manager_Event_QueueMemberPauseEvent.xml ├── T_AsterNET_Manager_Event_QueueMemberPausedEvent.xml ├── T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.xml ├── T_AsterNET_Manager_Event_QueueMemberRemovedEvent.xml ├── T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.xml ├── T_AsterNET_Manager_Event_QueueMemberStatusEvent.xml ├── T_AsterNET_Manager_Event_QueueParamsEvent.xml ├── T_AsterNET_Manager_Event_QueueStatusCompleteEvent.xml ├── T_AsterNET_Manager_Event_RTCPReceivedEvent.xml ├── T_AsterNET_Manager_Event_RTCPSentEvent.xml ├── T_AsterNET_Manager_Event_RTPReceiverStatEvent.xml ├── T_AsterNET_Manager_Event_RTPSenderStatEvent.xml ├── T_AsterNET_Manager_Event_RegistryEvent.xml ├── T_AsterNET_Manager_Event_ReloadEvent.xml ├── T_AsterNET_Manager_Event_RenameEvent.xml ├── T_AsterNET_Manager_Event_ResponseEvent.xml ├── T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.xml ├── T_AsterNET_Manager_Event_ShutdownEvent.xml ├── T_AsterNET_Manager_Event_StatusCompleteEvent.xml ├── T_AsterNET_Manager_Event_StatusEvent.xml ├── T_AsterNET_Manager_Event_TransferEvent.xml ├── T_AsterNET_Manager_Event_UnholdEvent.xml ├── T_AsterNET_Manager_Event_UnknownEvent.xml ├── T_AsterNET_Manager_Event_UnlinkEvent.xml ├── T_AsterNET_Manager_Event_UnparkedCallEvent.xml ├── T_AsterNET_Manager_Event_UserEvent.xml ├── T_AsterNET_Manager_Event_VarSetEvent.xml ├── T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.xml ├── T_AsterNET_Manager_Event_ZapShowChannelsEvent.xml ├── T_AsterNET_Manager_IResponseHandler.xml ├── T_AsterNET_Manager_ManagerConnection.xml ├── T_AsterNET_Manager_ManagerException.xml ├── T_AsterNET_Manager_ManagerReader.xml ├── T_AsterNET_Manager_Originate.xml ├── T_AsterNET_Manager_ResponseEventHandler.xml ├── T_AsterNET_Manager_ResponseEvents.xml ├── T_AsterNET_Manager_ResponseHandler.xml ├── T_AsterNET_Manager_Response_ChallengeResponse.xml ├── T_AsterNET_Manager_Response_CommandResponse.xml ├── T_AsterNET_Manager_Response_ExtensionStateResponse.xml ├── T_AsterNET_Manager_Response_GetConfigResponse.xml ├── T_AsterNET_Manager_Response_MailboxCountResponse.xml ├── T_AsterNET_Manager_Response_MailboxStatusResponse.xml ├── T_AsterNET_Manager_Response_ManagerError.xml ├── T_AsterNET_Manager_Response_ManagerResponse.xml ├── T_AsterNET_Manager_Response_OriginateResponse.xml ├── T_AsterNET_Manager_TimeoutException.xml ├── T_AsterNET_Util_MD5Support.xml ├── T_AsterNET_Util_ThreadClass.xml ├── T_AsterNET_Util_ThreadPool.xml └── roottoc.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/.travis.yml -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.2013.sln -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.2013.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.2013.vssscc -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET.WinForm/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET.WinForm/FormMain.Designer.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET.WinForm/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET.WinForm/FormMain.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET.WinForm/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET.WinForm/FormMain.resx -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET.WinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET.WinForm/Program.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET.WinForm/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET.WinForm/app.config -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/AsterNET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/AsterNET.csproj -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Asterisk.NET.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Asterisk.NET.csproj.vspscc -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Common.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/AGIChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/AGIChannel.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/AGIReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/AGIReader.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/AGIReply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/AGIReply.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/AGIRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/AGIRequest.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/AGIScript.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/AGIWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/AGIWriter.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/AsteriskFastAGI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/AsteriskFastAGI.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/Command/AGICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/Command/AGICommand.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/IMappingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/IMappingStrategy.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/MappingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/MappingStrategy.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/FastAGI/Script/AGINoAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/FastAGI/Script/AGINoAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Helper.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/IO/ServerSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/IO/ServerSocket.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/IO/SocketConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/IO/SocketConnection.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/IParseSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/IParseSupport.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Logger.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Action/AGIAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Action/AGIAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Action/DBDelAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Action/DBDelAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Action/DBGetAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Action/DBGetAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Action/DBPutAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Action/DBPutAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Action/LoginAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Action/LoginAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Action/ParkAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Action/ParkAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Action/PingAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Action/PingAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Action/ProxyAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Action/ProxyAction.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/AsteriskVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/AsteriskVersion.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/AGIExecEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/AGIExecEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/AgentsEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/AgentsEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/AlarmEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/AlarmEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/BridgeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/BridgeEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/CdrEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/CdrEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/ConnectEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/ConnectEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/DTMFEndEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/DTMFEndEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/DTMFEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/DTMFEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/DialEndEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/DialEndEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/DialEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/DialEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/HangupEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/HangupEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/HoldEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/JabberEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/JabberEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/JoinEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/JoinEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/LeaveEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/LeaveEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/LinkEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/LinkEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/ManagerEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/ManagerEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/PRIEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/PRIEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/QueueEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/QueueEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/ReloadEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/ReloadEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/RenameEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/RenameEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/StatusEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/StatusEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/UnholdEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/UnknownEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/UnknownEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/UnlinkEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/UnlinkEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/UserEvent.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Event/VarSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Event/VarSet.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/IActionVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/IActionVariable.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/IResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/IResponseHandler.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/ManagerReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/ManagerReader.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/Originate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/Originate.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/ResponseEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/ResponseEvents.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Manager/ResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Manager/ResponseHandler.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Util/MD5Support.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Util/MD5Support.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Util/ThreadClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Util/ThreadClass.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Util/ThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Util/ThreadPool.cs -------------------------------------------------------------------------------- /Asterisk.2013/Asterisk.NET/Util/ThreadTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Asterisk.NET/Util/ThreadTask.cs -------------------------------------------------------------------------------- /Asterisk.2013/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/ChangeLog.txt -------------------------------------------------------------------------------- /Asterisk.2013/Documentation/Content/Welcome.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Documentation/Content/Welcome.aml -------------------------------------------------------------------------------- /Asterisk.2013/Documentation/ContentLayout.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Documentation/ContentLayout.content -------------------------------------------------------------------------------- /Asterisk.2013/Documentation/Documentation.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Documentation/Documentation.shfbproj -------------------------------------------------------------------------------- /Asterisk.2013/Documentation/icons/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Documentation/icons/Help.png -------------------------------------------------------------------------------- /Asterisk.2013/Package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/Asterisk.2013/Package.nuspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/README.md -------------------------------------------------------------------------------- /docs/SearchHelp.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/SearchHelp.aspx -------------------------------------------------------------------------------- /docs/SearchHelp.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/SearchHelp.inc.php -------------------------------------------------------------------------------- /docs/SearchHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/SearchHelp.php -------------------------------------------------------------------------------- /docs/Web.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/Web.Config -------------------------------------------------------------------------------- /docs/WebKI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/WebKI.xml -------------------------------------------------------------------------------- /docs/WebTOC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/WebTOC.xml -------------------------------------------------------------------------------- /docs/fti/FTI_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_100.json -------------------------------------------------------------------------------- /docs/fti/FTI_101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_101.json -------------------------------------------------------------------------------- /docs/fti/FTI_102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_102.json -------------------------------------------------------------------------------- /docs/fti/FTI_103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_103.json -------------------------------------------------------------------------------- /docs/fti/FTI_104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_104.json -------------------------------------------------------------------------------- /docs/fti/FTI_105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_105.json -------------------------------------------------------------------------------- /docs/fti/FTI_106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_106.json -------------------------------------------------------------------------------- /docs/fti/FTI_107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_107.json -------------------------------------------------------------------------------- /docs/fti/FTI_108.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_108.json -------------------------------------------------------------------------------- /docs/fti/FTI_109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_109.json -------------------------------------------------------------------------------- /docs/fti/FTI_110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_110.json -------------------------------------------------------------------------------- /docs/fti/FTI_111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_111.json -------------------------------------------------------------------------------- /docs/fti/FTI_112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_112.json -------------------------------------------------------------------------------- /docs/fti/FTI_113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_113.json -------------------------------------------------------------------------------- /docs/fti/FTI_114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_114.json -------------------------------------------------------------------------------- /docs/fti/FTI_115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_115.json -------------------------------------------------------------------------------- /docs/fti/FTI_116.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_116.json -------------------------------------------------------------------------------- /docs/fti/FTI_117.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_117.json -------------------------------------------------------------------------------- /docs/fti/FTI_118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_118.json -------------------------------------------------------------------------------- /docs/fti/FTI_119.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_119.json -------------------------------------------------------------------------------- /docs/fti/FTI_120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_120.json -------------------------------------------------------------------------------- /docs/fti/FTI_121.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_121.json -------------------------------------------------------------------------------- /docs/fti/FTI_122.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_122.json -------------------------------------------------------------------------------- /docs/fti/FTI_97.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_97.json -------------------------------------------------------------------------------- /docs/fti/FTI_98.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_98.json -------------------------------------------------------------------------------- /docs/fti/FTI_99.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_99.json -------------------------------------------------------------------------------- /docs/fti/FTI_Files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/fti/FTI_Files.json -------------------------------------------------------------------------------- /docs/html/100303f2-3dd8-401b-a594-579aae2a939c.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/100303f2-3dd8-401b-a594-579aae2a939c.htm -------------------------------------------------------------------------------- /docs/html/79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm -------------------------------------------------------------------------------- /docs/html/E_AsterNET_Manager_ManagerConnection_Alarm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/E_AsterNET_Manager_ManagerConnection_Alarm.htm -------------------------------------------------------------------------------- /docs/html/E_AsterNET_Manager_ManagerConnection_Cdr.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/E_AsterNET_Manager_ManagerConnection_Cdr.htm -------------------------------------------------------------------------------- /docs/html/E_AsterNET_Manager_ManagerConnection_DTMF.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/E_AsterNET_Manager_ManagerConnection_DTMF.htm -------------------------------------------------------------------------------- /docs/html/E_AsterNET_Manager_ManagerConnection_Dial.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/E_AsterNET_Manager_ManagerConnection_Dial.htm -------------------------------------------------------------------------------- /docs/html/E_AsterNET_Manager_ManagerConnection_Hold.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/E_AsterNET_Manager_ManagerConnection_Hold.htm -------------------------------------------------------------------------------- /docs/html/E_AsterNET_Manager_ManagerConnection_Join.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/E_AsterNET_Manager_ManagerConnection_Join.htm -------------------------------------------------------------------------------- /docs/html/E_AsterNET_Manager_ManagerConnection_Leave.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/E_AsterNET_Manager_ManagerConnection_Leave.htm -------------------------------------------------------------------------------- /docs/html/E_AsterNET_Manager_ManagerConnection_Link.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/E_AsterNET_Manager_ManagerConnection_Link.htm -------------------------------------------------------------------------------- /docs/html/Events_T_AsterNET_FastAGI_AGIException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Events_T_AsterNET_FastAGI_AGIException.htm -------------------------------------------------------------------------------- /docs/html/Events_T_AsterNET_Manager_ManagerException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Events_T_AsterNET_Manager_ManagerException.htm -------------------------------------------------------------------------------- /docs/html/Events_T_AsterNET_Manager_TimeoutException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Events_T_AsterNET_Manager_TimeoutException.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_BIND_ADDRESS.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_BIND_ADDRESS.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_BIND_PORT.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_BIND_PORT.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_DEFAULT_MAX_DIGITS.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_DEFAULT_MAX_DIGITS.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_DEFAULT_TIMEOUT.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_DEFAULT_TIMEOUT.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_END_OF_PROPER_USAGE.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_END_OF_PROPER_USAGE.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_PARAMETER_PATTERN.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_PARAMETER_PATTERN.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_PARENTHESIS_PATTERN.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_PARENTHESIS_PATTERN.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_POOL_SIZE.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_POOL_SIZE.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_RESULT_PATTERN.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_RESULT_PATTERN.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_SCRIPT_PATTERN.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_SCRIPT_PATTERN.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_STATUS_PATTERN.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_STATUS_PATTERN.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_AGI_SYNOPSIS_PATTERN.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_AGI_SYNOPSIS_PATTERN.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_ASTERISK_VERSION.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_ASTERISK_VERSION.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_CultureInfoEn.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_CultureInfoEn.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_DEFAULT_HOSTNAME.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_DEFAULT_HOSTNAME.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_DEFAULT_PORT.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_DEFAULT_PORT.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_LINE_SEPARATOR.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_LINE_SEPARATOR.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_MINUS_SEPARATOR.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_MINUS_SEPARATOR.htm -------------------------------------------------------------------------------- /docs/html/F_AsterNET_Common_VAR_DELIMITER.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/F_AsterNET_Common_VAR_DELIMITER.htm -------------------------------------------------------------------------------- /docs/html/Fields_T_AsterNET_Common.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Fields_T_AsterNET_Common.htm -------------------------------------------------------------------------------- /docs/html/Fields_T_AsterNET_FastAGI_AsteriskFastAGI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Fields_T_AsterNET_FastAGI_AsteriskFastAGI.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIChannel_SendCommand.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIChannel_SendCommand.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIChannel__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIChannel__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIChannel__ctor_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIChannel__ctor_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIException__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIException__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIException__ctor_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIException__ctor_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIException__ctor_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIException__ctor_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReader_ReadReply.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReader_ReadReply.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReader_ReadRequest.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReader_ReadRequest.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReader__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReader__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReply_GetAttribute.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReply_GetAttribute.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReply_GetResult.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReply_GetResult.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReply_GetStatus.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReply_GetStatus.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReply_GetSynopsis.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReply_GetSynopsis.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReply_GetUsage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReply_GetUsage.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReply_ToString.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReply_ToString.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReply__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReply__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIReply__ctor_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIReply__ctor_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIRequest_Parameter.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIRequest_Parameter.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIRequest_ParameterMap.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIRequest_ParameterMap.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIRequest_ToString.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIRequest_ToString.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIRequest__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIRequest__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_Answer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_Answer.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_DatabaseDel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_DatabaseDel.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_DatabaseGet.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_DatabaseGet.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_DatabasePut.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_DatabasePut.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_Exec.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_Exec.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_Exec_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_Exec_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_GetData.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_GetData.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_GetData_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_GetData_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_GetData_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_GetData_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_GetOption.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_GetOption.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_GetOption_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_GetOption_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_GetVariable.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_GetVariable.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_Hangup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_Hangup.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_RecordFile.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_RecordFile.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_RecordFile_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_RecordFile_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayAlpha.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayAlpha.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayAlpha_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayAlpha_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayDateTime.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayDateTime.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayDateTime_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayDateTime_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayDateTime_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayDateTime_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayDateTime_3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayDateTime_3.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayDigits.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayDigits.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayDigits_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayDigits_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayNumber.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayNumber.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayNumber_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayNumber_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayPhonetic.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayPhonetic.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayPhonetic_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayPhonetic_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayTime.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayTime.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SayTime_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SayTime_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_Service.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_Service.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SetAutoHangup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SetAutoHangup.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SetContext.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SetContext.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SetExtension.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SetExtension.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SetPriority.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SetPriority.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SetPriority_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SetPriority_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_SetVariable.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_SetVariable.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_StreamFile.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_StreamFile.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_StreamFile_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_StreamFile_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_Verbose.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_Verbose.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript_WaitForDigit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript_WaitForDigit.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIScript__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIScript__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIWriter_SendCommand.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIWriter_SendCommand.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AGIWriter__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AGIWriter__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI_Start.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI_Start.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI_Stop.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI_Stop.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_3.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_4.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_5.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_6.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_IMappingStrategy_Load.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_IMappingStrategy_Load.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_MappingStrategy_Load.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_MappingStrategy_Load.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_MappingStrategy__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_MappingStrategy__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_FastAGI_MappingStrategy__ctor_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_FastAGI_MappingStrategy__ctor_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_IO_ServerSocket_Accept.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_IO_ServerSocket_Accept.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_IO_ServerSocket_Close.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_IO_ServerSocket_Close.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_IO_ServerSocket__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_IO_ServerSocket__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_IO_SocketConnection_Close.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_IO_SocketConnection_Close.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_IO_SocketConnection_ReadLine.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_IO_SocketConnection_ReadLine.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_IO_SocketConnection_Write.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_IO_SocketConnection_Write.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_IO_SocketConnection_WriteEx.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_IO_SocketConnection_WriteEx.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_IO_SocketConnection__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_IO_SocketConnection__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Debug.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Debug_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Debug_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Debug_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Debug_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Debug_3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Debug_3.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Error.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Error.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Error_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Error_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Error_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Error_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Error_3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Error_3.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Info.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Info_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Info_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Info_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Info_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Info_3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Info_3.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Instance.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Instance.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_IsVisible.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_IsVisible.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Visible.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Visible.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Visible_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Visible_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Warning.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Warning.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Warning_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Warning_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Warning_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Warning_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger_Warning_3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger_Warning_3.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Logger__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Logger__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Action_AgiAction__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Action_AgiAction__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Action_ParkAction__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Action_ParkAction__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Action_PingAction__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Action_PingAction__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_AgentsEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_AgentsEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_AlarmEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_AlarmEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_BridgeEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_BridgeEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_CdrEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_CdrEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_DTMFEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_DTMFEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_DialEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_DialEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_HangupEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_HangupEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_HoldEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_HoldEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_JabberEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_JabberEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_JoinEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_JoinEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_LeaveEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_LeaveEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_LinkEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_LinkEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_PRIEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_PRIEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_QueueEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_QueueEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_ReloadEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_ReloadEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_RenameEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_RenameEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_StatusEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_StatusEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_UnholdEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_UnholdEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_UnlinkEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_UnlinkEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_UserEvent_Parse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_UserEvent_Parse.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_UserEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_UserEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Event_VarSetEvent__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Event_VarSetEvent__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_IResponseHandler_Free.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_IResponseHandler_Free.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_ManagerConnection_Login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_ManagerConnection_Login.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_ManagerConnection__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_ManagerConnection__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_ManagerException__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_ManagerException__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_ManagerReader__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_ManagerReader__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Originate_GetVariable.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Originate_GetVariable.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Originate_GetVariables.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Originate_GetVariables.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Originate_SetVariable.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Originate_SetVariable.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Originate_SetVariables.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Originate_SetVariables.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_Originate__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_Originate__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_ResponseEvents_AddEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_ResponseEvents_AddEvent.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_ResponseEvents__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_ResponseEvents__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_ResponseHandler_Free.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_ResponseHandler_Free.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_ResponseHandler__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_ResponseHandler__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Manager_TimeoutException__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Manager_TimeoutException__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_MD5Support_GetInstance.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_MD5Support_GetInstance.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_MD5Support_GetInstance_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_MD5Support_GetInstance_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_MD5Support_Update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_MD5Support_Update.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_MD5Support__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_MD5Support__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadClass_Interrupt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadClass_Interrupt.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadClass_Run.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadClass_Run.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadClass_Start.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadClass_Start.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadClass__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadClass__ctor.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadClass__ctor_1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadClass__ctor_1.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadClass__ctor_2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadClass__ctor_2.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadClass__ctor_3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadClass__ctor_3.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadPool_AddJob.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadPool_AddJob.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadPool_Shutdown.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadPool_Shutdown.htm -------------------------------------------------------------------------------- /docs/html/M_AsterNET_Util_ThreadPool__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/M_AsterNET_Util_ThreadPool__ctor.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_AGIChannel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_AGIChannel.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_AGIException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_AGIException.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_AGIReader.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_AGIReader.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_AGIReply.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_AGIReply.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_AGIRequest.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_AGIRequest.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_AGIScript.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_AGIScript.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_AGIWriter.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_AGIWriter.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_AsteriskFastAGI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_AsteriskFastAGI.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_FastAGI_MappingStrategy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_FastAGI_MappingStrategy.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_IO_ServerSocket.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_IO_ServerSocket.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_IO_SocketConnection.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_IO_SocketConnection.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Logger.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Logger.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Event_CdrEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Event_CdrEvent.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Event_DTMFEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Event_DTMFEvent.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Event_DialEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Event_DialEvent.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Event_HoldEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Event_HoldEvent.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Event_JoinEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Event_JoinEvent.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Event_LinkEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Event_LinkEvent.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Event_PRIEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Event_PRIEvent.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Event_UserEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Event_UserEvent.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_ManagerReader.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_ManagerReader.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_Originate.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_Originate.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_ResponseEvents.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_ResponseEvents.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Manager_ResponseHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Manager_ResponseHandler.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Util_MD5Support.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Util_MD5Support.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Util_ThreadClass.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Util_ThreadClass.htm -------------------------------------------------------------------------------- /docs/html/Methods_T_AsterNET_Util_ThreadPool.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Methods_T_AsterNET_Util_ThreadPool.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_FastAGI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_FastAGI.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_FastAGI_Command.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_FastAGI_Command.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_FastAGI_MappingStrategies.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_FastAGI_MappingStrategies.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_IO.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_IO.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_Manager.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_Manager.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_Manager_Action.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_Manager_Action.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_Manager_Event.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_Manager_Event.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_Manager_Response.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_Manager_Response.htm -------------------------------------------------------------------------------- /docs/html/N_AsterNET_Util.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/N_AsterNET_Util.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_FastAGI_AGIChannel__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_FastAGI_AGIChannel__ctor.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_FastAGI_AGIReply__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_FastAGI_AGIReply__ctor.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_FastAGI_AGIScript_Exec.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_FastAGI_AGIScript_Exec.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_Logger_Debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_Logger_Debug.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_Logger_Error.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_Logger_Error.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_Logger_Info.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_Logger_Info.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_Logger_Visible.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_Logger_Visible.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_Logger_Warning.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_Logger_Warning.htm -------------------------------------------------------------------------------- /docs/html/Overload_AsterNET_Util_ThreadClass__ctor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Overload_AsterNET_Util_ThreadClass__ctor.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIChannel_LastReply.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIChannel_LastReply.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIReply_Extra.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIReply_Extra.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIReply_FirstLine.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIReply_FirstLine.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIReply_Lines.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIReply_Lines.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIReply_ResultCode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIReply_ResultCode.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_AccountCode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_AccountCode.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_CallerId.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_CallerId.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_CallerIdName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_CallerIdName.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_CallingAni2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_CallingAni2.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_CallingPres.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_CallingPres.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_CallingTns.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_CallingTns.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_CallingTon.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_CallingTon.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Channel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Channel.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Context.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Context.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Dnid.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Dnid.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Enhanced.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Enhanced.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Extension.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Extension.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Language.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Language.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_LocalAddress.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_LocalAddress.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_LocalPort.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_LocalPort.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Priority.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Priority.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Rdnis.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Rdnis.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_RemotePort.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_RemotePort.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Request.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Request.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_RequestURL.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_RequestURL.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Script.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Script.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_Type.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_Type.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIRequest_UniqueId.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIRequest_UniqueId.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_FastAGI_AGIScript_Channel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_FastAGI_AGIScript_Channel.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_IO_SocketConnection_Encoding.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_IO_SocketConnection_Encoding.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_IO_SocketConnection_Initial.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_IO_SocketConnection_Initial.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_IO_SocketConnection_IsConnected.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_IO_SocketConnection_IsConnected.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_IO_SocketConnection_LocalPort.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_IO_SocketConnection_LocalPort.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_IO_SocketConnection_RemotePort.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_IO_SocketConnection_RemotePort.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_IO_SocketConnection_TcpClient.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_IO_SocketConnection_TcpClient.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Action_AgiAction_Action.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Action_AgiAction_Action.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Action_DBDelAction_Key.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Action_DBDelAction_Key.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Action_DBGetAction_Key.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Action_DBGetAction_Key.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Action_DBPutAction_Key.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Action_DBPutAction_Key.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Action_DBPutAction_Val.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Action_DBPutAction_Val.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Action_LoginAction_Key.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Action_LoginAction_Key.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_AgentsEvent_Agent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_AgentsEvent_Agent.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_AgentsEvent_Name.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_AgentsEvent_Name.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_AlarmEvent_Alarm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_AlarmEvent_Alarm.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_AsyncAGIEvent_Env.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_AsyncAGIEvent_Env.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_CdrEvent_AmaFlags.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_CdrEvent_AmaFlags.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_CdrEvent_CallerId.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_CdrEvent_CallerId.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_CdrEvent_Duration.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_CdrEvent_Duration.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_CdrEvent_EndTime.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_CdrEvent_EndTime.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_CdrEvent_LastData.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_CdrEvent_LastData.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_CdrEvent_Src.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_CdrEvent_Src.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_DTMFEvent_Begin.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_DTMFEvent_Begin.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_DTMFEvent_Digit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_DTMFEvent_Digit.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_DTMFEvent_End.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_DTMFEvent_End.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_DialEvent_Src.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_DialEvent_Src.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_HangupEvent_Cause.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_HangupEvent_Cause.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_HoldEvent_Status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_HoldEvent_Status.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_PRIEvent_DChannel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_PRIEvent_DChannel.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_PRIEvent_PriEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_PRIEvent_PriEvent.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_PRIEvent_Span.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_PRIEvent_Span.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_QueueEvent_Count.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_QueueEvent_Count.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_QueueEvent_Queue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_QueueEvent_Queue.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_RTCPSentEvent_To.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_RTCPSentEvent_To.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_StatusEvent_Link.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_StatusEvent_Link.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_StatusEvent_State.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_StatusEvent_State.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_VarSetEvent_File.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_VarSetEvent_File.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Event_VarSetEvent_Func.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Event_VarSetEvent_Func.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Originate_Account.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Originate_Account.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Originate_CallerId.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Originate_CallerId.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Originate_Channel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Originate_Channel.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Originate_Context.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Originate_Context.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Originate_Data.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Originate_Data.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Originate_Exten.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Originate_Exten.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Originate_Priority.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Originate_Priority.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_Originate_Timeout.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_Originate_Timeout.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Manager_ResponseHandler_Hash.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Manager_ResponseHandler_Hash.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Util_MD5Support_DigestData.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Util_MD5Support_DigestData.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Util_ThreadClass_IsAlive.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Util_ThreadClass_IsAlive.htm -------------------------------------------------------------------------------- /docs/html/P_AsterNET_Util_ThreadClass_Name.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/P_AsterNET_Util_ThreadClass_Name.htm -------------------------------------------------------------------------------- /docs/html/Properties_T_AsterNET_FastAGI_AGIReply.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Properties_T_AsterNET_FastAGI_AGIReply.htm -------------------------------------------------------------------------------- /docs/html/Properties_T_AsterNET_FastAGI_AGIScript.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Properties_T_AsterNET_FastAGI_AGIScript.htm -------------------------------------------------------------------------------- /docs/html/Properties_T_AsterNET_Manager_Originate.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Properties_T_AsterNET_Manager_Originate.htm -------------------------------------------------------------------------------- /docs/html/Properties_T_AsterNET_Util_MD5Support.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Properties_T_AsterNET_Util_MD5Support.htm -------------------------------------------------------------------------------- /docs/html/Properties_T_AsterNET_Util_ThreadClass.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/Properties_T_AsterNET_Util_ThreadClass.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Common.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Common.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIChannel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIChannel.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIConnectionHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIConnectionHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIException.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIHangupException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIHangupException.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGINetworkException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGINetworkException.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIReader.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIReader.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIReply.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIReply.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIReplyStatuses.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIReplyStatuses.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIRequest.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIRequest.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIScript.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIScript.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AGIWriter.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AGIWriter.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_AsteriskFastAGI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_AsteriskFastAGI.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_Command_AGICommand.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_Command_AGICommand.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_Command_ExecCommand.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_Command_ExecCommand.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_Command_NoopCommand.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_Command_NoopCommand.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_IMappingStrategy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_IMappingStrategy.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_FastAGI_MappingStrategy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_FastAGI_MappingStrategy.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_IO_ServerSocket.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_IO_ServerSocket.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_IO_SocketConnection.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_IO_SocketConnection.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Logger.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Logger.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Logger_MessageLevel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Logger_MessageLevel.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_AGIExecHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_AGIExecHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_AgentsAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_AgentsAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_AgiAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_AgiAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_AtxferAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_AtxferAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_BridgeAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_BridgeAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_CommandAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_CommandAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_DBDelAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_DBDelAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_DBGetAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_DBGetAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_DBPutAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_DBPutAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_EventsAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_EventsAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_GetVarAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_GetVarAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_HangupAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_HangupAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_LoginAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_LoginAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_LogoffAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_LogoffAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_ManagerAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_ManagerAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_MonitorAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_MonitorAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_ParkAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_ParkAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_PingAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_PingAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_ProxyAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_ProxyAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_SetVarAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_SetVarAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Action_StatusAction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Action_StatusAction.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_AgentsEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_AgentsEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_AlarmEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_AlarmEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_AsteriskVersion.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_AsteriskVersion.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_BridgeEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_BridgeEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_CdrEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_CdrEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_DNDStateEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_DNDStateEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_DTMFEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_DTMFEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_DialEndEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_DialEndEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_DialEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_DialEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_AGIExecEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_AGIExecEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_AgentDumpEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_AgentDumpEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_AgentsEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_AgentsEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_AlarmEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_AlarmEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_AsyncAGIEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_AsyncAGIEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_BridgeEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_BridgeEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_CdrEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_CdrEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_ConnectEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_ConnectEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_DNDStateEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_DNDStateEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_DTMFEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_DTMFEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_DialBeginEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_DialBeginEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_DialEndEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_DialEndEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_DialEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_DialEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_FailedACLEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_FailedACLEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_HangupEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_HangupEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_HoldEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_HoldEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_JabberEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_JabberEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_JoinEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_JoinEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_LeaveEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_LeaveEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_LinkEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_LinkEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_ManagerEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_ManagerEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_MeetmeEndEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_MeetmeEndEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_NewExtenEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_NewExtenEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_NewStateEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_NewStateEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_PRIEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_PRIEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_PeerEntryEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_PeerEntryEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_QueueEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_QueueEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_RTCPSentEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_RTCPSentEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_RegistryEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_RegistryEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_ReloadEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_ReloadEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_RenameEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_RenameEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_ResponseEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_ResponseEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_ShutdownEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_ShutdownEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_StatusEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_StatusEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_TransferEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_TransferEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_UnholdEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_UnholdEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_UnknownEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_UnknownEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_UnlinkEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_UnlinkEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_UserEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_UserEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Event_VarSetEvent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Event_VarSetEvent.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_HangupEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_HangupEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_HoldEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_HoldEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_IResponseHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_IResponseHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_JoinEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_JoinEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_LeaveEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_LeaveEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_LinkEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_LinkEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_ManagerConnection.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_ManagerConnection.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_ManagerEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_ManagerEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_ManagerException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_ManagerException.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_ManagerReader.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_ManagerReader.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_NewExtenEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_NewExtenEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_NewStateEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_NewStateEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_Originate.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_Originate.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_RegistryEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_RegistryEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_RenameEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_RenameEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_ResponseEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_ResponseEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_ResponseEvents.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_ResponseEvents.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_ResponseHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_ResponseHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_StatusEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_StatusEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_TimeoutException.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_TimeoutException.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_TransferEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_TransferEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_UnholdEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_UnholdEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_UnlinkEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_UnlinkEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_UserEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_UserEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Manager_VarSetEventHandler.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Manager_VarSetEventHandler.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Util_MD5Support.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Util_MD5Support.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Util_ThreadClass.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Util_ThreadClass.htm -------------------------------------------------------------------------------- /docs/html/T_AsterNET_Util_ThreadPool.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/T_AsterNET_Util_ThreadPool.htm -------------------------------------------------------------------------------- /docs/html/d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/html/d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm -------------------------------------------------------------------------------- /docs/icons/AlertCaution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/AlertCaution.png -------------------------------------------------------------------------------- /docs/icons/AlertNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/AlertNote.png -------------------------------------------------------------------------------- /docs/icons/AlertSecurity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/AlertSecurity.png -------------------------------------------------------------------------------- /docs/icons/CFW.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/CFW.gif -------------------------------------------------------------------------------- /docs/icons/CodeExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/CodeExample.png -------------------------------------------------------------------------------- /docs/icons/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/Help.png -------------------------------------------------------------------------------- /docs/icons/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/Search.png -------------------------------------------------------------------------------- /docs/icons/SectionCollapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/SectionCollapsed.png -------------------------------------------------------------------------------- /docs/icons/SectionExpanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/SectionExpanded.png -------------------------------------------------------------------------------- /docs/icons/TocClose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/TocClose.gif -------------------------------------------------------------------------------- /docs/icons/TocCollapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/TocCollapsed.gif -------------------------------------------------------------------------------- /docs/icons/TocExpanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/TocExpanded.gif -------------------------------------------------------------------------------- /docs/icons/TocOpen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/TocOpen.gif -------------------------------------------------------------------------------- /docs/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/favicon.ico -------------------------------------------------------------------------------- /docs/icons/privclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privclass.gif -------------------------------------------------------------------------------- /docs/icons/privdelegate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privdelegate.gif -------------------------------------------------------------------------------- /docs/icons/privenumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privenumeration.gif -------------------------------------------------------------------------------- /docs/icons/privevent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privevent.gif -------------------------------------------------------------------------------- /docs/icons/privextension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privextension.gif -------------------------------------------------------------------------------- /docs/icons/privfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privfield.gif -------------------------------------------------------------------------------- /docs/icons/privinterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privinterface.gif -------------------------------------------------------------------------------- /docs/icons/privmethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privmethod.gif -------------------------------------------------------------------------------- /docs/icons/privproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privproperty.gif -------------------------------------------------------------------------------- /docs/icons/privstructure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/privstructure.gif -------------------------------------------------------------------------------- /docs/icons/protclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protclass.gif -------------------------------------------------------------------------------- /docs/icons/protdelegate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protdelegate.gif -------------------------------------------------------------------------------- /docs/icons/protenumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protenumeration.gif -------------------------------------------------------------------------------- /docs/icons/protevent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protevent.gif -------------------------------------------------------------------------------- /docs/icons/protextension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protextension.gif -------------------------------------------------------------------------------- /docs/icons/protfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protfield.gif -------------------------------------------------------------------------------- /docs/icons/protinterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protinterface.gif -------------------------------------------------------------------------------- /docs/icons/protmethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protmethod.gif -------------------------------------------------------------------------------- /docs/icons/protoperator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protoperator.gif -------------------------------------------------------------------------------- /docs/icons/protproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protproperty.gif -------------------------------------------------------------------------------- /docs/icons/protstructure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/protstructure.gif -------------------------------------------------------------------------------- /docs/icons/pubclass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubclass.gif -------------------------------------------------------------------------------- /docs/icons/pubdelegate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubdelegate.gif -------------------------------------------------------------------------------- /docs/icons/pubenumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubenumeration.gif -------------------------------------------------------------------------------- /docs/icons/pubevent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubevent.gif -------------------------------------------------------------------------------- /docs/icons/pubextension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubextension.gif -------------------------------------------------------------------------------- /docs/icons/pubfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubfield.gif -------------------------------------------------------------------------------- /docs/icons/pubinterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubinterface.gif -------------------------------------------------------------------------------- /docs/icons/pubmethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubmethod.gif -------------------------------------------------------------------------------- /docs/icons/puboperator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/puboperator.gif -------------------------------------------------------------------------------- /docs/icons/pubproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubproperty.gif -------------------------------------------------------------------------------- /docs/icons/pubstructure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/pubstructure.gif -------------------------------------------------------------------------------- /docs/icons/slMobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/slMobile.gif -------------------------------------------------------------------------------- /docs/icons/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/static.gif -------------------------------------------------------------------------------- /docs/icons/xna.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/icons/xna.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/scripts/branding-Website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/scripts/branding-Website.js -------------------------------------------------------------------------------- /docs/scripts/branding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/scripts/branding.js -------------------------------------------------------------------------------- /docs/scripts/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/scripts/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/styles/branding-Help1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-Help1.css -------------------------------------------------------------------------------- /docs/styles/branding-Help2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-Help2.css -------------------------------------------------------------------------------- /docs/styles/branding-HelpViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-HelpViewer.css -------------------------------------------------------------------------------- /docs/styles/branding-Website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-Website.css -------------------------------------------------------------------------------- /docs/styles/branding-cs-CZ.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-cs-CZ.css -------------------------------------------------------------------------------- /docs/styles/branding-de-DE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-de-DE.css -------------------------------------------------------------------------------- /docs/styles/branding-en-US.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-en-US.css -------------------------------------------------------------------------------- /docs/styles/branding-es-ES.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-es-ES.css -------------------------------------------------------------------------------- /docs/styles/branding-fr-FR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-fr-FR.css -------------------------------------------------------------------------------- /docs/styles/branding-it-IT.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-it-IT.css -------------------------------------------------------------------------------- /docs/styles/branding-ja-JP.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-ja-JP.css -------------------------------------------------------------------------------- /docs/styles/branding-ko-KR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-ko-KR.css -------------------------------------------------------------------------------- /docs/styles/branding-pl-PL.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-pl-PL.css -------------------------------------------------------------------------------- /docs/styles/branding-pt-BR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-pt-BR.css -------------------------------------------------------------------------------- /docs/styles/branding-ru-RU.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-ru-RU.css -------------------------------------------------------------------------------- /docs/styles/branding-tr-TR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-tr-TR.css -------------------------------------------------------------------------------- /docs/styles/branding-zh-CN.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-zh-CN.css -------------------------------------------------------------------------------- /docs/styles/branding-zh-TW.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding-zh-TW.css -------------------------------------------------------------------------------- /docs/styles/branding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/styles/branding.css -------------------------------------------------------------------------------- /docs/toc/100303f2-3dd8-401b-a594-579aae2a939c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/100303f2-3dd8-401b-a594-579aae2a939c.xml -------------------------------------------------------------------------------- /docs/toc/Fields_T_AsterNET_Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Fields_T_AsterNET_Common.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_FastAGI_AGIChannel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_FastAGI_AGIChannel.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_FastAGI_AGIReader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_FastAGI_AGIReader.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_FastAGI_AGIReply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_FastAGI_AGIReply.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_FastAGI_AGIRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_FastAGI_AGIRequest.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_FastAGI_AGIScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_FastAGI_AGIScript.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_FastAGI_AGIWriter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_FastAGI_AGIWriter.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_IO_ServerSocket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_IO_ServerSocket.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_IO_SocketConnection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_IO_SocketConnection.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_Logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_Logger.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_Manager_Originate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_Manager_Originate.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_Util_MD5Support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_Util_MD5Support.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_Util_ThreadClass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_Util_ThreadClass.xml -------------------------------------------------------------------------------- /docs/toc/Methods_T_AsterNET_Util_ThreadPool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Methods_T_AsterNET_Util_ThreadPool.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_FastAGI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_FastAGI.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_FastAGI_Command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_FastAGI_Command.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_FastAGI_MappingStrategies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_FastAGI_MappingStrategies.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_IO.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_Manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_Manager.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_Manager_Action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_Manager_Action.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_Manager_Event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_Manager_Event.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_Manager_Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_Manager_Response.xml -------------------------------------------------------------------------------- /docs/toc/N_AsterNET_Util.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/N_AsterNET_Util.xml -------------------------------------------------------------------------------- /docs/toc/Overload_AsterNET_FastAGI_AGIReply__ctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Overload_AsterNET_FastAGI_AGIReply__ctor.xml -------------------------------------------------------------------------------- /docs/toc/Overload_AsterNET_FastAGI_AGIScript_Exec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Overload_AsterNET_FastAGI_AGIScript_Exec.xml -------------------------------------------------------------------------------- /docs/toc/Overload_AsterNET_Logger_Debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Overload_AsterNET_Logger_Debug.xml -------------------------------------------------------------------------------- /docs/toc/Overload_AsterNET_Logger_Error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Overload_AsterNET_Logger_Error.xml -------------------------------------------------------------------------------- /docs/toc/Overload_AsterNET_Logger_Info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Overload_AsterNET_Logger_Info.xml -------------------------------------------------------------------------------- /docs/toc/Overload_AsterNET_Logger_Visible.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Overload_AsterNET_Logger_Visible.xml -------------------------------------------------------------------------------- /docs/toc/Overload_AsterNET_Logger_Warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Overload_AsterNET_Logger_Warning.xml -------------------------------------------------------------------------------- /docs/toc/Overload_AsterNET_Util_ThreadClass__ctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Overload_AsterNET_Util_ThreadClass__ctor.xml -------------------------------------------------------------------------------- /docs/toc/Properties_T_AsterNET_FastAGI_AGIChannel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Properties_T_AsterNET_FastAGI_AGIChannel.xml -------------------------------------------------------------------------------- /docs/toc/Properties_T_AsterNET_FastAGI_AGIReply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Properties_T_AsterNET_FastAGI_AGIReply.xml -------------------------------------------------------------------------------- /docs/toc/Properties_T_AsterNET_FastAGI_AGIRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Properties_T_AsterNET_FastAGI_AGIRequest.xml -------------------------------------------------------------------------------- /docs/toc/Properties_T_AsterNET_FastAGI_AGIScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Properties_T_AsterNET_FastAGI_AGIScript.xml -------------------------------------------------------------------------------- /docs/toc/Properties_T_AsterNET_Manager_Originate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Properties_T_AsterNET_Manager_Originate.xml -------------------------------------------------------------------------------- /docs/toc/Properties_T_AsterNET_Util_MD5Support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Properties_T_AsterNET_Util_MD5Support.xml -------------------------------------------------------------------------------- /docs/toc/Properties_T_AsterNET_Util_ThreadClass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/Properties_T_AsterNET_Util_ThreadClass.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Common.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIChannel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIChannel.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIConnectionHandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIConnectionHandler.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIException.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIException.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIHangupException.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIHangupException.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGINetworkException.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGINetworkException.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIReader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIReader.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIReply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIReply.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIRequest.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIScript.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AGIWriter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AGIWriter.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_AsteriskFastAGI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_AsteriskFastAGI.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_Command_AGICommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_Command_AGICommand.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_Command_AnswerCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_Command_AnswerCommand.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_Command_ExecCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_Command_ExecCommand.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_Command_HangupCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_Command_HangupCommand.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_Command_NoopCommand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_Command_NoopCommand.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_IMappingStrategy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_IMappingStrategy.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_FastAGI_MappingStrategy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_FastAGI_MappingStrategy.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_IO_ServerSocket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_IO_ServerSocket.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_IO_SocketConnection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_IO_SocketConnection.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Logger.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_AgentsAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_AgentsAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_AgiAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_AgiAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_AtxferAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_AtxferAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_BridgeAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_BridgeAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_CommandAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_CommandAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_DBDelAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_DBDelAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_DBGetAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_DBGetAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_DBPutAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_DBPutAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_EventsAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_EventsAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_GetVarAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_GetVarAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_HangupAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_HangupAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_LoginAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_LoginAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_LogoffAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_LogoffAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_ManagerAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_ManagerAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_MonitorAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_MonitorAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_ParkAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_ParkAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_PingAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_PingAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_ProxyAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_ProxyAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_QueueAddAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_QueueAddAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_QueueLogAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_QueueLogAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_RedirectAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_RedirectAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_SIPPeersAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_SIPPeersAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_SetVarAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_SetVarAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_StatusAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_StatusAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Action_ZapDNDOnAction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Action_ZapDNDOnAction.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_EventTimeoutException.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_EventTimeoutException.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_AGIExecEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_AGIExecEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_AgentDumpEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_AgentDumpEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_AgentLoginEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_AgentLoginEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_AgentsEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_AgentsEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_AlarmClearEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_AlarmClearEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_AlarmEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_AlarmEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_AsyncAGIEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_AsyncAGIEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_BridgeEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_BridgeEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_CdrEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_CdrEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_ConnectEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_ConnectEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_DNDStateEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_DNDStateEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_DTMFEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_DTMFEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_DialBeginEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_DialBeginEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_DialEndEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_DialEndEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_DialEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_DialEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_DisconnectEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_DisconnectEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_FailedACLEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_FailedACLEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_HangupEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_HangupEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_HoldEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_HoldEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_HoldedCallEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_HoldedCallEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_JabberEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_JabberEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_JoinEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_JoinEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_LeaveEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_LeaveEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_LinkEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_LinkEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_LogChannelEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_LogChannelEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_ManagerEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_ManagerEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_MeetmeEndEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_MeetmeEndEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_MeetmeJoinEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_MeetmeJoinEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_MeetmeMuteEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_MeetmeMuteEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_NewChannelEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_NewChannelEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_NewExtenEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_NewExtenEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_NewStateEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_NewStateEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_PRIEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_PRIEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_ParkedCallEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_ParkedCallEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_PeerEntryEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_PeerEntryEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_PeerStatusEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_PeerStatusEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_QueueEntryEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_QueueEntryEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_QueueEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_QueueEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_RTCPSentEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_RTCPSentEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_RegistryEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_RegistryEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_ReloadEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_ReloadEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_RenameEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_RenameEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_ResponseEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_ResponseEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_ShutdownEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_ShutdownEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_StatusEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_StatusEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_TransferEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_TransferEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_UnholdEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_UnholdEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_UnknownEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_UnknownEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_UnlinkEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_UnlinkEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_UserEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_UserEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Event_VarSetEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Event_VarSetEvent.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_IResponseHandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_IResponseHandler.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_ManagerConnection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_ManagerConnection.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_ManagerException.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_ManagerException.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_ManagerReader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_ManagerReader.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Originate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Originate.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_ResponseEventHandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_ResponseEventHandler.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_ResponseEvents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_ResponseEvents.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_ResponseHandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_ResponseHandler.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_Response_ManagerError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_Response_ManagerError.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Manager_TimeoutException.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Manager_TimeoutException.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Util_MD5Support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Util_MD5Support.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Util_ThreadClass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Util_ThreadClass.xml -------------------------------------------------------------------------------- /docs/toc/T_AsterNET_Util_ThreadPool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/T_AsterNET_Util_ThreadPool.xml -------------------------------------------------------------------------------- /docs/toc/roottoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/AsterNET/HEAD/docs/toc/roottoc.xml --------------------------------------------------------------------------------