Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
URIに基づいてSDLTridionページの公開されたURLを取得できるかどうか誰かが知っていますか?理想的には、コアサービスを使用してこれを実行したいと思います。
ページの公開URLの取得について話している場合は、次の方法で実行できます。
PageData page = client.Read("tcm:12-345-64", null) as PageData; PublishLocationInfo info = (PublishLocationInfo)page.LocationInfo; string url = info.PublishLocationUrl;