Note: This API is now obsolete.
Lists all existing design documents.
Namespace: Couchbase.ManagementAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax[ObsoleteAttribute("Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")]
public IResult<string> GetDesignDocuments(
bool includeDevelopment = false
)
[ObsoleteAttribute("Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")]
public IResult<string> GetDesignDocuments(
bool includeDevelopment = false
)
<ObsoleteAttribute("Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")>
Public Function GetDesignDocuments (
Optional includeDevelopment As Boolean = false
) As IResult(Of String)
<ObsoleteAttribute("Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")>
Public Function GetDesignDocuments (
Optional includeDevelopment As Boolean = false
) As IResult(Of String)
public:
[ObsoleteAttribute(L"Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")]
virtual IResult<String^>^ GetDesignDocuments(
bool includeDevelopment = false
) sealed
public:
[ObsoleteAttribute(L"Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")]
virtual IResult<String^>^ GetDesignDocuments(
bool includeDevelopment = false
) sealed
[<ObsoleteAttribute("Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")>]
abstract GetDesignDocuments :
?includeDevelopment : bool
(* Defaults:
let _includeDevelopment = defaultArg includeDevelopment false
*)
-> IResult<string>
[<ObsoleteAttribute("Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")>]
override GetDesignDocuments :
?includeDevelopment : bool
(* Defaults:
let _includeDevelopment = defaultArg includeDevelopment false
*)
-> IResult<string>
[<ObsoleteAttribute("Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")>]
abstract GetDesignDocuments :
?includeDevelopment : bool
(* Defaults:
let _includeDevelopment = defaultArg includeDevelopment false
*)
-> IResult<string>
[<ObsoleteAttribute("Note that the overload which takes an 'includeDevelopment' is obsolete; the method will ignore the parameter value if passed.")>]
override GetDesignDocuments :
?includeDevelopment : bool
(* Defaults:
let _includeDevelopment = defaultArg includeDevelopment false
*)
-> IResult<string>
Parameters
- includeDevelopment (Optional)
- Type: System.Boolean
Whether or not to show development design documents in the results.
Return Value
Type:
IResult<String>The design document as a string.
Implements
IBucketManager.GetDesignDocuments(Boolean)
See Also