BCRepositoryNewConfigurableFolder Method (BCFolder, BCFolderType, String) |
Note: This API is now obsolete.
Creates a new sub-folder with the specified type and name.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax[ObsoleteAttribute("This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")]
public BCFolder NewConfigurableFolder(
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 NewConfigurableFolder (
parent As BCFolder,
type As BCFolderType,
name As String
) As BCFolder
public:
[ObsoleteAttribute(L"This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")]
BCFolder^ NewConfigurableFolder(
BCFolder^ parent,
BCFolderType^ type,
String^ name
)
[<ObsoleteAttribute("This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")>]
member NewConfigurableFolder :
parent : BCFolder *
type : BCFolderType *
name : string -> BCFolder
Parameters
- parent
- Type: BlueCieloECM.InnoCielo.Meridian.ServerBCFolder
The parent folder of the sub-folder to create. - type
- Type: BlueCieloECM.InnoCielo.Meridian.ServerBCFolderType
The type of the sub-folder to create. - name
- Type: SystemString
The name of the sub-folder to create.
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