| DAVClientresolveObjectRequest Method | 
 Attempts to find and collections of a specified FolderType under the HomeSetURL
 
 
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntaxpublic DAVResult resolveObjectRequest(
	ref DAVURI HomeSetURL,
	ref DAVContainer DAVObject,
	DAVContainerType FolderType = DAVContainerType.Calendar
)
Public Function resolveObjectRequest ( 
	ByRef HomeSetURL As DAVURI,
	ByRef DAVObject As DAVContainer,
	Optional FolderType As DAVContainerType = DAVContainerType.Calendar
) As DAVResult
public:
DAVResult resolveObjectRequest(
	DAVURI^% HomeSetURL, 
	DAVContainer^% DAVObject, 
	DAVContainerType FolderType = DAVContainerType::Calendar
)
member resolveObjectRequest : 
        HomeSetURL : DAVURI byref * 
        DAVObject : DAVContainer byref * 
        ?FolderType : DAVContainerType 
(* Defaults:
        let _FolderType = defaultArg FolderType DAVContainerType.Calendar
*)
-> DAVResult 
Parameters
- HomeSetURL
- Type: ARPDev.DAVLIBDAVURI
 Homeset URL
- DAVObject
- Type: ARPDev.DAVLIBDAVContainer
 Resulting DAV Object
- FolderType (Optional)
- Type: ARPDev.DAVLIBDAVContainerType
 The type of folder being sought
Return Value
Type: 
DAVResultReturns either DAVResult.Success or DAVResult.Failure
 Remarks
RemarksThe FolderType is specified to refine the properties requested from the DAV host
 See Also
See Also