<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Determine if a dataset is registered as versioned using the Pro SDK in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1674190#M13327</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/221628"&gt;@Aashis&lt;/a&gt;,&amp;nbsp;thanks a lot, this works fine for me. I must have overlooked &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic6966.html" target="_self"&gt;Dataset.GetRegistrationType()&lt;/A&gt; when I was first looking into this. In my (still limited) experience, dataset.GetRegistrationType() works fine, even if dataset is from a Geodatabase gdb with gdb.IsVersioningSupported() == false; in this case it returns &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic6822.html" target="_self"&gt;Nonversioned&lt;/A&gt;, which makes sense and is convenient.&lt;/P&gt;</description>
    <pubDate>Fri, 19 Dec 2025 10:58:56 GMT</pubDate>
    <dc:creator>ujr_esrich</dc:creator>
    <dc:date>2025-12-19T10:58:56Z</dc:date>
    <item>
      <title>Determine if a dataset is registered as versioned using the Pro SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1673568#M13315</link>
      <description>&lt;P&gt;Hi community, I am wondering if there is a way to determine if a table or feaure class in a geodatabase is registered as versioned. With ArcPy, I could use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/arcpy/functions/dataset-properties.htm" target="_self"&gt;arcpy.Describe("MyDataset").isVersioned&lt;/A&gt; (or &lt;SPAN&gt;isTraditionalVersioned or isBranchVersioned)&lt;/SPAN&gt;. Is there an equivalent in the Pro SDK? I appreciate any hints.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 13:03:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1673568#M13315</guid>
      <dc:creator>ujr_esrich</dc:creator>
      <dc:date>2025-12-17T13:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Determine if a dataset is registered as versioned using the Pro SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1673611#M13318</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Sample from &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic6822.html" target="_self"&gt;ArcGIS Pro API Reference&lt;/A&gt;:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public bool IsTableVersioned(Geodatabase geodatabase, string tableName)
{
    using (Table table = geodatabase.OpenDataset&amp;lt;Table&amp;gt;(tableName))
    {
        // Check table version type
        RegistrationType registrationType = table.GetRegistrationType();
        if (registrationType == RegistrationType.Versioned)
        {
            return true;
        }
    }
    return false;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 15:07:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1673611#M13318</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2025-12-17T15:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Determine if a dataset is registered as versioned using the Pro SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1673616#M13319</link>
      <description>&lt;P&gt;In addition to&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;, to find a versioning type ( Branch or Traditional),&amp;nbsp;&lt;A href="https://prodev.arcgis.com/en/pro-app/3.6/sdk/api-reference/topic28928.html" target="_self"&gt; versionManager.GetVersioningType()&lt;/A&gt; should be called. Please refer to the &lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Geodatabase#versioning" target="_self"&gt;Pro conceptual doc.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Dec 2025 15:25:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1673616#M13319</guid>
      <dc:creator>Aashis</dc:creator>
      <dc:date>2025-12-17T15:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Determine if a dataset is registered as versioned using the Pro SDK</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1674190#M13327</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/42133"&gt;@GKmieliauskas&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/221628"&gt;@Aashis&lt;/a&gt;,&amp;nbsp;thanks a lot, this works fine for me. I must have overlooked &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic6966.html" target="_self"&gt;Dataset.GetRegistrationType()&lt;/A&gt; when I was first looking into this. In my (still limited) experience, dataset.GetRegistrationType() works fine, even if dataset is from a Geodatabase gdb with gdb.IsVersioningSupported() == false; in this case it returns &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic6822.html" target="_self"&gt;Nonversioned&lt;/A&gt;, which makes sense and is convenient.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2025 10:58:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/determine-if-a-dataset-is-registered-as-versioned/m-p/1674190#M13327</guid>
      <dc:creator>ujr_esrich</dc:creator>
      <dc:date>2025-12-19T10:58:56Z</dc:date>
    </item>
  </channel>
</rss>

