ChangeTypes Enumeration

Defines the type of change made on an object.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:  websvcUserProfileChangeService
Assembly:  MOSSSOAP (in MOSSSOAP.dll)

Syntax

'Declaration
<SerializableAttribute> _
<FlagsAttribute> _
Public Enumeration ChangeTypes
'Usage
Dim instance As ChangeTypes
[SerializableAttribute]
[FlagsAttribute]
public enum ChangeTypes

Members

Member name Description
None No change was made to an object in the user profile store.
Add An object was added to the user profile store.
Modify An object was modified in the user profile store.
Delete An object was deleted from the user profile store.
Metadata The metadata of an object was modified in the user profile store.
All Multiple operations were performed on an object in the user profile store.

Remarks

Objects can be of the following types:

  • SingleValueProperty

  • MultiValueProperty

  • Anniversary

  • DLMembership

  • SiteMembership

  • QuickLink

  • Colleague

  • PersonalizationSite

  • UserProfile

  • WebLog

  • All

  • None

An SPChange object contains information about the type of change, as represented by the ChangeTypes enumeration.

The User Profile Change Web service namespace is an arbitrary name for a reference to the UserProfileChangeService.asmx Web service in Microsoft Office SharePoint Server 2007.

The User Profile Change Web service provides a user profile interface for remote clients to read and create user profiles.

To use the User Profile Change Web service library, you must generate a proxy class in either Microsoft Visual C# or Microsoft Visual Basic through which you can call the various Web service methods.

You access the Web Services Description Language (WSDL) for the User Profile Change Web service endpoint through UserProfileChangeService.asmx?wsdl.

The following example shows the format of the URL to the User Profile Change Web service WSDL file.

https://server/customsite/_vti_bin/UserProfileChangeService.asmx

If you do not have a custom site, you can use the following URL temporarily:

https://server/_vti_bin/UserProfileChangeService.asmx

It is recommended that you create a custom site, and then use the URL that includes the custom site in the URL format.

The following table describes each element in the URL.

URL element

Description

server

The name of the server on which Microsoft Office SharePoint Server 2007 is deployed.

customsite

A custom Office SharePoint Server 2007 site that the server administrator creates.

<endpointname>.asmx

The name of the Web service endpoint. For User Profile Change Web service, it is UserProfileChangeService.asmx.

For more information about the WSDL format, see the World Wide Web Consortium (W3C) WSDL specification at http://www.w3.org/TR/wsdl.

For more information about the change tracking object model for the user profile store, see User Profiles Change Log. For a code example about how to find what changed in a user profile within a period of time and how to access the change log remotely, see How to: Get Recent User Profile Changes Using the Change Log and How to: Use the Web Service to Modify User Profile Data.

See Also

Reference

websvcUserProfileChangeService Namespace