PeerCastStation.UI.HTTP.HTMLHost.GetPhysicalPath C# (CSharp) 메소드

GetPhysicalPath() 개인적인 메소드

private GetPhysicalPath ( OWINEnv env ) : string
env OWINEnv
리턴 string
    private string GetPhysicalPath(OWINEnv env)
    {
      string physical_path;
      if (virtualPhysicalPathMap.TryGetValue(env.RequestPathBase, out physical_path)) {
        return Path.GetFullPath(Path.Combine(physical_path, env.RequestPath));
      }
      else {
        return null;
      }
    }