BCRepositoryNewFolder Method (BCFolder, BCFolderType, String) |
Note: This API is now obsolete.
Creates a new sub-folder in the specified folder.
Namespace:
BlueCieloECM.InnoCielo.Meridian.Server
Assembly:
BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntax [ObsoleteAttribute("This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")]
public BCFolder NewFolder(
BCFolder parent,
BCFolderType type,
string name
)
<ObsoleteAttribute("This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")>
Public Function NewFolder (
parent As BCFolder,
type As BCFolderType,
name As String
) As BCFolder
Parameters
- parent
- Type: BlueCieloECM.InnoCielo.Meridian.ServerBCFolder
The parent folder of the sub-folder to create.
- type
- Type: BlueCieloECM.InnoCielo.Meridian.ServerBCFolderType
The sub-folder type to create.
If , then a normal folder is created (the AMFolder type).
- name
- Type: SystemString
The name of the sub-folder to create.
If or an empty string then the sub-folder will have auto-generated name.
Return Value
Type:
BCFolderThe created sub-folder.
Remarks
This method might be removed from future versions.
Use the NewFolder method of the parent folder.
See Also