IViewApiClientPatchViewPropertiesAsync Method  | 
 
            Partially changes properties of a view
            PATCH /_api/view/{view-name}/properties
            
 
    Namespace: 
   ArangoDBNetStandard.ViewApi
    Assembly:
   ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
SyntaxTask<ViewResponse> PatchViewPropertiesAsync(
	string viewNameOrId,
	ViewDetails body
)
Function PatchViewPropertiesAsync ( 
	viewNameOrId As String,
	body As ViewDetails
) As Task(Of ViewResponse)
Task<ViewResponse^>^ PatchViewPropertiesAsync(
	String^ viewNameOrId, 
	ViewDetails^ body
)
abstract PatchViewPropertiesAsync : 
        viewNameOrId : string * 
        body : ViewDetails -> Task<ViewResponse> 
Parameters
- viewNameOrId
 - Type: SystemString
The name or identifier of the view. - body
 - Type: ArangoDBNetStandard.ViewApi.ModelsViewDetails
The body of the request containing required properties. 
Return Value
Type: 
TaskViewResponse
See Also