The IADsFileService interface is derived from the IADsService interface. The interface definition is as follows:
interface IADsFileService: IADsService
{
// Read/write properties
[propget]
HRESULT Description ([out, retval]BSTR *pbstrDescription);
[propput]
HRESULT Description ([out, retval]BSTR bstrDescription);
[propget]
HRESULT MaxUserCount ([out, retval]long *plMaxUserCount);
[propput]
HRESULT MaxUserCount ([out, retval]long lMaxUserCount);
};
Method | Syntax | Description |
Description | String | Gets and sets the description of the file service. |
MaxUserCount | Integer | Gets and sets the maximum number of users allowed on the service at one time. |