实例介绍
与FreeSwitch 连接的客户端FsClient 源代码,采用C# 的WPF。可以作为 VOIP的客户端使用。
【实例截图】
【核心代码】
3b39bd1e-7d7c-445b-aa64-5fa0b45a12cf
└── FSClient
├── Account.cs
├── app.config
├── App.xaml
├── App.xaml.cs
├── bin
│ └── Debug
│ ├── conf
│ │ ├── freeswitch.serial
│ │ └── freeswitch.xml
│ ├── db
│ │ └── sofia_reg_softphone.db
│ ├── FreeSwitch.dll
│ ├── FreeSWITCH.Managed.dll
│ ├── FreeSwitch - 副本.dll
│ ├── FSClient.exe
│ ├── FSClient.exe.config
│ ├── FSClient.pdb
│ ├── FSClient.vshost.exe
│ ├── FSClient.vshost.exe.config
│ ├── FSClient.vshost.exe.manifest
│ ├── fs_cli.exe
│ ├── libapr.dll
│ ├── libaprutil.dll
│ ├── libbroadvoice.dll
│ ├── libeay32.dll
│ ├── libspandsp.dll
│ ├── libteletone.dll
│ ├── log
│ │ ├── freeswitch.log
│ │ └── freeswitch.xml.fsxml
│ ├── mod
│ │ ├── mod_bv.dll
│ │ ├── mod_celt.dll
│ │ ├── mod_commands.dll
│ │ ├── mod_conference.dll
│ │ ├── mod_console.dll
│ │ ├── mod_dialplan_xml.dll
│ │ ├── mod_dptools.dll
│ │ ├── mod_event_socket.dll
│ │ ├── mod_ilbc.dll
│ │ ├── mod_isac.dll
│ │ ├── mod_local_stream.dll
│ │ ├── mod_logfile.dll
│ │ ├── mod_loopback.dll
│ │ ├── mod_PortAudio.dll
│ │ ├── mod_silk.dll
│ │ ├── mod_siren.dll
│ │ ├── mod_sndfile.dll
│ │ ├── mod_sofia.dll
│ │ ├── mod_spandsp.dll
│ │ ├── mod_speex.dll
│ │ └── mod_tone_stream.dll
│ ├── mod_managed.dll
│ ├── plugins
│ │ ├── JabraHeadsetPlugin.dll
│ │ ├── JabraHeadsetPlugin.pdb
│ │ ├── JabraTelephonyAPI.dll
│ │ ├── Plantronics.Device.Common.dll
│ │ ├── PlantronicsHeadsetPlugin.dll
│ │ ├── PlantronicsHeadsetPlugin.pdb
│ │ ├── SimpleXmlContactPlugin.dll
│ │ └── SimpleXmlContactPlugin.pdb
│ ├── pthread.dll
│ ├── ssleay32.dll
│ ├── System.Windows.Controls.Input.Toolkit.dll
│ ├── System.Windows.Controls.Input.Toolkit.pdb
│ ├── System.Xml.dll
│ ├── WPFToolkit.dll
│ └── WPFToolkit.pdb
├── Broker.cs
├── Call.cs
├── Conference.cs
├── Controls
│ ├── OurAutoCompleteBox.cs
│ ├── PhonePadButton.xaml
│ └── PhonePadButton.xaml.cs
├── Converters.cs
├── DelayedFunction.cs
├── EventSocket.cs
├── External Items
│ ├── conf
│ │ └── freeswitch.xml
│ ├── fs_cli.exe
│ ├── JabraTelephonyAPI.dll
│ ├── link.pl
│ ├── Plantronics.Device.Common.dll
│ └── portaudio_notes.txt
├── Field.cs
├── FSClient.csproj
├── FSClient.csproj.user
├── FSClient.sln
├── FSClient.suo
├── FSEvent.cs
├── GenericEditor.xaml
├── GenericEditor.xaml.cs
├── IContactPlugin.cs
├── IHeadsetPlugin.cs
├── IncomingCallNotification.xaml
├── IncomingCallNotification.xaml.cs
├── InputBox.xaml
├── InputBox.xaml.cs
├── IPlugin.cs
├── JabraHeadset
│ ├── JabraHeadsetPlugin.csproj
│ ├── JabraProvider.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── JabraHeadsetPlugin.csproj.FileListAbsolute.txt
│ │ ├── JabraHeadsetPlugin.csprojResolveAssemblyReference.cache
│ │ ├── JabraHeadsetPlugin.dll
│ │ └── JabraHeadsetPlugin.pdb
│ └── Properties
│ └── AssemblyInfo.cs
├── lib
│ ├── FreeSwitch.dll
│ └── FreeSWITCH.Managed.dll
├── MainWindow.xaml
├── MainWindow.xaml.cs
├── obj
│ └── x86
│ └── Debug
│ ├── App.baml
│ ├── App.g.cs
│ ├── App.g.i.cs
│ ├── Controls
│ │ ├── PhonePadButton.baml
│ │ ├── PhonePadButton.g.cs
│ │ └── PhonePadButton.g.i.cs
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── FSClient.csproj.FileListAbsolute.txt
│ ├── FSClient.csproj.GenerateResource.Cache
│ ├── FSClient.csprojResolveAssemblyReference.cache
│ ├── FSClient.exe
│ ├── FSClient.g.resources
│ ├── FSClient_MarkupCompile.cache
│ ├── FSClient_MarkupCompile.i.cache
│ ├── FSClient_MarkupCompile.lref
│ ├── FSClient.pdb
│ ├── FSClient.Properties.Resources.resources
│ ├── GeneratedInternalTypeHelper.g.cs
│ ├── GeneratedInternalTypeHelper.g.i.cs
│ ├── GenericEditor.baml
│ ├── GenericEditor.g.cs
│ ├── GenericEditor.g.i.cs
│ ├── IncomingCallNotification.baml
│ ├── IncomingCallNotification.g.cs
│ ├── IncomingCallNotification.g.i.cs
│ ├── InputBox.baml
│ ├── InputBox.g.cs
│ ├── InputBox.g.i.cs
│ ├── MainWindow.baml
│ ├── MainWindow.g.cs
│ ├── MainWindow.g.i.cs
│ ├── Options.baml
│ ├── Options.g.cs
│ ├── Options.g.i.cs
│ ├── PluginOptionsWindow.baml
│ ├── PluginOptionsWindow.g.cs
│ ├── PluginOptionsWindow.g.i.cs
│ └── Themes
│ ├── Base.baml
│ ├── Black.baml
│ ├── RoyalBlue.baml
│ ├── Steel.baml
│ └── White.baml
├── ObservableClass.cs
├── Options.xaml
├── Options.xaml.cs
├── phone_dnd.ico
├── phone.ico
├── PlantronicsHeadset
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── PlantronicsHeadsetPlugin.csproj.FileListAbsolute.txt
│ │ ├── PlantronicsHeadsetPlugin.csprojResolveAssemblyReference.cache
│ │ ├── PlantronicsHeadsetPlugin.dll
│ │ └── PlantronicsHeadsetPlugin.pdb
│ ├── PlantronicsHeadsetPlugin.csproj
│ ├── PlantronicsProvider.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── PluginManagerBase.cs
├── PluginOptionsWindow.xaml
├── PluginOptionsWindow.xaml.cs
├── PortAudio.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── README.txt
├── Setup
│ ├── Banner.bmp
│ ├── Dialog.bmp
│ ├── FSClient.wxs
│ ├── FSCore.wxs
│ ├── Product.wxs
│ └── Setup.wixproj
├── SimpleContactPluginBase.cs
├── SimpleXmlContactPlugin
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── SimpleXmlContactPlugin.csproj.FileListAbsolute.txt
│ │ ├── SimpleXmlContactPlugin.csprojResolveAssemblyReference.cache
│ │ ├── SimpleXmlContactPlugin.dll
│ │ └── SimpleXmlContactPlugin.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SimpleXmlContactPlugin.cs
│ └── SimpleXmlContactPlugin.csproj
├── Sofia.cs
├── Themes
│ ├── Base.xaml
│ ├── Black.xaml
│ ├── RoyalBlue.xaml
│ ├── Steel.xaml
│ └── White.xaml
├── Utils.cs
├── warning.png
├── Windows.cs
└── XmlUtils.cs
32 directories, 195 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论