2011年1月6日

Location Profile

摘要: http://blogs.technet.com/b/jkunert/archive/tags/location+profile/Location Profile is used in OCS 2007 R2 but no longer used in Lync 2010, instead Dial Plan is used.We need Location Profiles in order to traslate extension number to E.164 number. It generatesa +E.164 format number.A Location Profile 阅读全文

posted @ 2011-01-06 10:20 椅望 阅读(147) 评论(0) 推荐(0) 编辑

2011年1月4日

OCS Blog

摘要: 1.http://blog.chrislehr.com/2.http://blog.crsw.com/3.http://insideocs.com/4.http://ocsguy.com/5.http://www.leedesmond.com/weblog/6.http://www.cinline.se/7.http://ucken.blogspot.com/8.http://imaucblog.com/9.http://www.experts-exchange.com/ fee10.http://techtrooper.net/11.http://blogs.technet.com/b/jk 阅读全文

posted @ 2011-01-04 11:01 椅望 阅读(90) 评论(0) 推荐(0) 编辑

2010年12月31日

phone edition

摘要: Feature: Aries Tanjay Oak厂家: Polycom Aastra 阅读全文

posted @ 2010-12-31 09:39 椅望 阅读(81) 评论(0) 推荐(0) 编辑

2010年11月17日

NAT(Network Address Translation)

摘要: 1. NAT技术的产生IP地址分为公有IP地址和私有IP地址。其中公有IP地址是在互联网上使用的,而私有IP地址是在公司内部是使用的,因此私有IP地址在不同的公司是可以重复使用的,这大大节约了共有地址的消耗。但是,使用私有IP地址的内部网络主机不能与互联网上的主机相互通信,为了解决这个问题,NAT产生了。2. NAT的作用NAT使内部网络使用私有地址的同时还能够与互联网上的主机进行通信。3. NA... 阅读全文

posted @ 2010-11-17 22:04 椅望 阅读(404) 评论(0) 推荐(0) 编辑

2010年9月3日

进程 ,端口, TLS ,RTP ,DNS SRV

摘要: 进程:一个运行的程序就是一个进程。进程对于一个程序来说就像一个大容器,程序运行以后就被放在了这个大容器中,我们也可以往这个容器里加东西,比如说程序需要的变量等等。现在的操作系统支持多线程,就是同时运行好多程序,所以端口的概念就产生了。端口:如果一个IP地址是一个房子的话,端口就相当于是房子的门。一个房子一般有几个门,但一个IP地址可以有256×256个端口。一个数据包从一端传到了目的主... 阅读全文

posted @ 2010-09-03 17:59 椅望 阅读(992) 评论(1) 推荐(0) 编辑

2010年8月10日

操作符重载

摘要: using System;public class OperratorClass{ int x,y,z; OperratorClass(int vx,int vy,int vz) { x=vx; y=vy; z=vz; } public static OperratorClass operator +(OperratorClass a, OperratorClass b) { OperratorC... 阅读全文

posted @ 2010-08-10 22:20 椅望 阅读(165) 评论(0) 推荐(0) 编辑

2010年8月8日

jagged数组

摘要: using System;public class JaggedClass{ public static void Main() { int[][] jagged = new int[3][]; jagged[0] = new int[3] { 1, 2, 3 }; jagged[1] = new int[1] { 0 }; jagged[2] = new int[2] {7,7}; for (i... 阅读全文

posted @ 2010-08-08 00:10 椅望 阅读(135) 评论(1) 推荐(0) 编辑

2010年8月7日

索引器

摘要: using System;public class IndexTest{ int[] arr = new int[100]; public int this[int index] { get { if (arr.Length == null||arr.Length==0) return 0; if (index < 0 || index > arr.Length) return 0; ... 阅读全文

posted @ 2010-08-07 23:22 椅望 阅读(124) 评论(1) 推荐(0) 编辑

传址out

摘要: using System;public class SimpleClass{ string str_origin; public string PassByReference(out string s) { s = "cba"; //必须在方法里进行初始化 s = s.ToUpper(); return s; } public static void Main() { SimpleClass s... 阅读全文

posted @ 2010-08-07 12:57 椅望 阅读(126) 评论(0) 推荐(0) 编辑

传值与ref传址

摘要: using System;public class SimpleClass{ public int PassByValue(int i) { i = i * 2; return i; } public string PassByValue(string s) { s = s.ToUpper(); return s; } public string PassByReference(ref stri... 阅读全文

posted @ 2010-08-07 01:23 椅望 阅读(140) 评论(0) 推荐(0) 编辑

导航