Provides access to members that control the RasterSDE connection.
Description
IBasicRasterSdeConnection allows you to set up the ArcSDE connection information before loading or manipulating raster dataset in ArcSDE. This interface is used internally and is not recommended in ArcGIS 9.x. Please see IRasterWorkspace or IRasterWorkspaceEx instead.
Members
Name | Description | |
---|---|---|
Database | The database name. | |
InputBitMaskName | The input 1-bit raster dataset name to be used as mask. | |
InputRasterName | The input raster dataset name. | |
Instance | The server instance. | |
MaskRaster | The input raster mask to be loaded to SDE. | |
Password | The password. | |
Raster | The input raster to be loaded to SDE. | |
SdeRasterName | The output raster dataset name. | |
SdeWorkspaceName | The SDE Connection, set through WorkspaceName object. | |
ServerName | The server name. | |
UserName | The username. |
IBasicRasterSdeConnection.Database Property
The database name.
Public Property Database As String
public string Database {get; set;}
IBasicRasterSdeConnection.InputBitMaskName Property
The input 1-bit raster dataset name to be used as mask.
Public Property InputBitMaskName As String
public string InputBitMaskName {get; set;}
IBasicRasterSdeConnection.InputRasterName Property
The input raster dataset name.
Public Property InputRasterName As String
public string InputRasterName {get; set;}
IBasicRasterSdeConnection.Instance Property
The server instance.
Public Property Instance As String
public string Instance {get; set;}
IBasicRasterSdeConnection.MaskRaster Property
The input raster mask to be loaded to SDE.
Public Property MaskRaster As IRaster
public IRaster MaskRaster {get; set;}
IBasicRasterSdeConnection.Password Property
The password.
Public Property Password As String
public string Password {get; set;}
IBasicRasterSdeConnection.Raster Property
The input raster to be loaded to SDE.
Public Property Raster As IRaster
public IRaster Raster {get; set;}
IBasicRasterSdeConnection.SdeRasterName Property
The output raster dataset name.
Public Property SdeRasterName As String
public string SdeRasterName {get; set;}
IBasicRasterSdeConnection.SdeWorkspaceName Property
The SDE Connection, set through WorkspaceName object.
Public WriteOnly Property SdeWorkspaceName
public void SdeWorkspaceName {set;}
IBasicRasterSdeConnection.ServerName Property
The server name.
Public Property ServerName As String
public string ServerName {get; set;}
IBasicRasterSdeConnection.UserName Property
The username.
Public Property UserName As String
public string UserName {get; set;}
Classes that implement IBasicRasterSdeConnection
Classes | Description |
---|---|
BasicRasterSdeLoader | A mechanism to control creation of SDE Raster datasets and load raster data. |