/// <summary>
 /// Returns true if this object is pointing to the same handle as |that|
 /// object.
 /// </summary>
 public bool IsSame(CefBrowser that)
 {
     if (that == null)
     {
         return(false);
     }
     return(cef_browser_t.is_same(_self, that.ToNative()) != 0);
 }
예제 #2
0
파일: CefBrowser.cs 프로젝트: whztt07/SDK
 /// <summary>
 /// Returns true if this object is pointing to the same handle as |that|
 /// object.
 /// </summary>
 public bool IsSame(CefBrowser that)
 {
     if (that == null) return false;
     return cef_browser_t.is_same(_self, that.ToNative()) != 0;
 }