ReplicaMetadata.FindItemMetadataByIndexedField Method
When overridden in a derived class, returns a list of item metadata entries that have the specified value for the indexed field.
Namespace: Microsoft.Synchronization.MetadataStorage
Assembly: Microsoft.Synchronization.MetadataStorage (in microsoft.synchronization.metadatastorage.dll)
Syntax
'Declaration
Public MustOverride Function FindItemMetadataByIndexedField ( _
fieldName As String, _
fieldValue As Object _
) As IEnumerable(Of ItemMetadata)
'Usage
Dim instance As ReplicaMetadata
Dim fieldName As String
Dim fieldValue As Object
Dim returnValue As IEnumerable(Of ItemMetadata)
returnValue = instance.FindItemMetadataByIndexedField(fieldName, fieldValue)
public abstract IEnumerable<ItemMetadata> FindItemMetadataByIndexedField (
string fieldName,
Object fieldValue
)
public:
virtual IEnumerable<ItemMetadata^>^ FindItemMetadataByIndexedField (
String^ fieldName,
Object^ fieldValue
) abstract
public abstract IEnumerable<ItemMetadata> FindItemMetadataByIndexedField (
String fieldName,
Object fieldValue
)
public abstract function FindItemMetadataByIndexedField (
fieldName : String,
fieldValue : Object
) : IEnumerable<ItemMetadata>
Parameters
- fieldName
The name of the indexed field. The field must be a valid field and an index field.
- fieldValue
The value of the indexed field.
Return Value
A list of item metadata entries that have the specified value for the indexed field. An empty collection is returned when no items exist.
Exceptions
Exception type | Condition |
---|---|
The object has been disposed or was not initialized correctly. |
|
fieldName or fieldValue is a null reference (Nothing in Visual Basic). |
|
fieldName is 0 length, or fieldValue is both a string type and 0 length. |
|
fieldValue is of an unsupported type. |
|
fieldName was not found or is not valid. |
Remarks
Custom fields must be established when the replica metadata is first initialized by passing FieldSchema to InitializeReplicaMetadata.
Index fields must be established when the replica metadata is first initialized by passing IndexSchema to InitializeReplicaMetadata.
See Also
Reference
ReplicaMetadata Class
ReplicaMetadata Members
Microsoft.Synchronization.MetadataStorage Namespace