GetOfflinePath() 공개 정적인 메소드

public static GetOfflinePath ( ) : string
리턴 string
        public void OnLoadError(string url)
        {
            if (!webView)
            {
                return;
            }

            if (m_IsOffline)
            {
                Debug.LogErrorFormat("Unexpected error: Failed to load offline Asset Store page (url={0})", url);
                return;
            }

            m_IsOffline = true;
            webView.LoadFile(AssetStoreUtils.GetOfflinePath());
        }
예제 #2
0
 public void OnLoadError(string url)
 {
     if (!(bool)this.webView)
     {
         return;
     }
     if (this.m_IsOffline)
     {
         Debug.LogErrorFormat("Unexpected error: Failed to load offline Asset Store page (url={0})", (object)url);
     }
     else
     {
         this.m_IsOffline = true;
         this.webView.LoadFile(AssetStoreUtils.GetOfflinePath());
     }
 }
예제 #3
0
 public void OnLoadError(string url)
 {
     if (this.webView != null)
     {
         if (this.m_IsOffline)
         {
             object[] args = new object[] { url };
             Debug.LogErrorFormat("Unexpected error: Failed to load offline Asset Store page (url={0})", args);
         }
         else
         {
             this.m_IsOffline = true;
             this.webView.LoadFile(AssetStoreUtils.GetOfflinePath());
         }
     }
 }
예제 #4
0
 public void OnLoadError(string url)
 {
     if (!this.m_WebView)
     {
         return;
     }
     if (this.m_IsOffline)
     {
         Debug.LogErrorFormat("Unexpected error: Failed to load offline Asset Store page (url={0})", new object[]
         {
             url
         });
         return;
     }
     this.m_IsOffline = true;
     this.m_WebView.LoadFile(AssetStoreUtils.GetOfflinePath());
 }