- insertCommand
- The database command which will be initialized to insert the new information.
- mediaLocation
- A MediaLocation object that represents the media location information to be inserted.
| Visual Basic (Declaration) | |
|---|---|
Protected MustOverride Sub PrepareInsertMediaPathCommand( _ ByVal insertCommand As DbCommand, _ ByVal mediaLocation As MediaLocation _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As MediaCreationDbDataAccessAgent Dim insertCommand As DbCommand Dim mediaLocation As MediaLocation instance.PrepareInsertMediaPathCommand(insertCommand, mediaLocation) | |
| C# | |
|---|---|
protected abstract void PrepareInsertMediaPathCommand( DbCommand insertCommand, MediaLocation mediaLocation ) | |
| Managed Extensions for C++ | |
|---|---|
protected: abstract void PrepareInsertMediaPathCommand( DbCommand* insertCommand, MediaLocation* mediaLocation ) | |
| C++/CLI | |
|---|---|
protected: abstract void PrepareInsertMediaPathCommand( DbCommand^ insertCommand, MediaLocation^ mediaLocation ) | |
Parameters
- insertCommand
- The database command which will be initialized to insert the new information.
- mediaLocation
- A MediaLocation object that represents the media location information to be inserted.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code