예제 #1
0
 /// <summary>
 /// Check SNI handle connection
 /// </summary>
 /// <param name="handle"></param>
 /// <returns>SNI error status</returns>
 public uint CheckConnection()
 {
     lock (this)
     {
         return(_lowerHandle.CheckConnection());
     }
 }
예제 #2
0
파일: SNIProxy.cs 프로젝트: schellap/corefx
 /// <summary>
 /// Check SNI handle connection
 /// </summary>
 /// <param name="handle"></param>
 /// <returns>SNI error status</returns>
 public uint CheckConnection(SNIHandle handle)
 {
     return(handle.CheckConnection());
 }
예제 #3
0
파일: SNIProxy.cs 프로젝트: rajeevkb/corefx
 /// <summary>
 /// Check SNI handle connection
 /// </summary>
 /// <param name="handle"></param>
 /// <returns>SNI error status</returns>
 public uint CheckConnection(SNIHandle handle)
 {
     return handle.CheckConnection();
 }