ArcObjects Library Reference (GeoDatabaseDistributed)  

IGDSData.ConnectionProperties Property

The properties to be used when downloading the data (if transport type is URL).

[Visual Basic .NET]
Public Property ConnectionProperties As IPropertySet
[C#]
public IPropertySet ConnectionProperties {get; set;}
[C++]
HRESULT get_ConnectionProperties(
  IPropertySet** connProps
);
[C++]
HRESULT putref_ConnectionProperties(
  IPropertySet* connProps
);
[C++]

Parameters

connProps [out, retval]

  connProps is a parameter of type IPropertySet

connProps [in]

  connProps is a parameter of type IPropertySet

Product Availability

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

Remarks

The connection properties needed to connect to the URL specified in the IGDSData::URL property.

This property does not need to be set if the data is embedded or if the URL allows anonymous access. If the URL has http authentication enabled, then it is recommended you use an encrypted communication channel which can be enabled through ssl.

See Also

IGDSData Interface