|
EntryControllerCreate Method |
Creates a entry to the repository
Namespace: DrawerBackup.Storage.WebS.ControllersAssembly: DrawerBackup.Storage (in DrawerBackup.Storage.dll) Version: 0.0.1.1 (0.0.1.1)
Syntax[AuthorizeAttribute]
[HttpPostAttribute]
public Result Create(
[FromUriAttribute] string id,
[FromBodyAttribute] JobEntry entry
)
<AuthorizeAttribute>
<HttpPostAttribute>
Public Function Create (
<FromUriAttribute> id As String,
<FromBodyAttribute> entry As JobEntry
) As Result
public:
[AuthorizeAttribute]
[HttpPostAttribute]
Result^ Create(
[FromUriAttribute] String^ id,
[FromBodyAttribute] JobEntry^ entry
)
[<AuthorizeAttribute>]
[<HttpPostAttribute>]
member Create :
[<FromUriAttribute>] id : string *
[<FromBodyAttribute>] entry : JobEntry -> Result
Parameters
- id
- Type: SystemString
Operation ID - entry
- Type: DrawerBackup.Native.Data.EntitiesJobEntry
Return Value
Type:
Result
See Also