This document is archived and information here might be outdated.  Recommended version.


IReplicaDescription.IsPrivateTable Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IR > IReplicaDescription Interface > IReplicaDescription.IsPrivateTable Property
ArcGIS Developer Help

IReplicaDescription.IsPrivateTable Property

Indicates if a dataset is private or not.

[Visual Basic .NET]
Public Function get_IsPrivateTable ( _
    ByVal Index As Integer _
) As Boolean
[Visual Basic .NET]
Public Sub set_IsPrivateTable ( _
    ByVal Index As Integer, _
    ByVal IsPrivate As Boolean _
)
[C#]
public bool get_IsPrivateTable (
    int Index
);
[C#]
public void set_IsPrivateTable (
    int Index,
    bool IsPrivate
);
[C++]
HRESULT get_IsPrivateTable(
  long Index,
  VARIANT_BOOL IsPrivate
);
[C++]
HRESULT put_IsPrivateTable(
  long Index,
  Boolean* IsPrivate
);
[C++]
Parameters
Index [in]

Index is a parameter of type long IsPrivate [in]
IsPrivate is a parameter of type bool Index [in]
Index is a parameter of type long IsPrivate [out, retval]
IsPrivate is a parameter of type bool*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The IsPrivateTable property allows you to mark a checked out dataset as private. A private dataset is not included in the enumeration returned from the Ireplica::ReplicaDatasets method or displayed in the replica properties dialog in the user interface. However, changes to private datasets are checked in. This property is useful for custom applications that include application specific tables.

See Also

IReplicaDescription Interface