ExternalFileFormat Constructors

Definition

Overloads

ExternalFileFormat()
ExternalFileFormat(Database, String)
ExternalFileFormat(Database, String, ExternalFileFormatType)

Parameterized constructor - populates properties from parameter values. Overloaded constructor to set all external file format required properties.

ExternalFileFormat()

public ExternalFileFormat ();
Public Sub New ()

Applies to

ExternalFileFormat(Database, String)

public ExternalFileFormat (Microsoft.SqlServer.Management.Smo.Database database, string name);
new Microsoft.SqlServer.Management.Smo.ExternalFileFormat : Microsoft.SqlServer.Management.Smo.Database * string -> Microsoft.SqlServer.Management.Smo.ExternalFileFormat
Public Sub New (database As Database, name As String)

Parameters

database
Database
name
String

Applies to

ExternalFileFormat(Database, String, ExternalFileFormatType)

Parameterized constructor - populates properties from parameter values. Overloaded constructor to set all external file format required properties.

public ExternalFileFormat (Microsoft.SqlServer.Management.Smo.Database parent, string name, Microsoft.SqlServer.Management.Smo.ExternalFileFormatType formatType);
new Microsoft.SqlServer.Management.Smo.ExternalFileFormat : Microsoft.SqlServer.Management.Smo.Database * string * Microsoft.SqlServer.Management.Smo.ExternalFileFormatType -> Microsoft.SqlServer.Management.Smo.ExternalFileFormat
Public Sub New (parent As Database, name As String, formatType As ExternalFileFormatType)

Parameters

parent
Database

The name of the parent database.

name
String

The name of the external file format.

formatType
ExternalFileFormatType

The external file format type.

Applies to