KnownPropertyList.Find
Find(params Guid[])
Finds properties in list according to its PropertySet
public PropertyDescriptor[] Find(params Guid[] propertySets)
Parameter | Type | Description |
---|---|---|
propertySets | Guid[] | PropertySet to find |
Return Value
Array of PropertyDescriptor
objects with required PropertySet if found in the list; otherwise empty array.
See Also
- class PropertyDescriptor
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email
Find(string)
Finds property in list with specified name
public PropertyDescriptor Find(string name)
Parameter | Type | Description |
---|---|---|
name | String | The name used to refer to the property. |
Return Value
PropertyDescriptor
object if found in the list; otherwise null.
See Also
- class PropertyDescriptor
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email
Find(int, PropertyDataType)
Finds PidTagPropertyDescriptor
property in list
public PidTagPropertyDescriptor Find(int id, PropertyDataType type)
Parameter | Type | Description |
---|---|---|
id | Int32 | id to find |
type | PropertyDataType | Data type of a property |
Return Value
PidTagPropertyDescriptor
object with defined tag if found in the list; otherwise null.
See Also
- class PidTagPropertyDescriptor
- enum PropertyDataType
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email
Find(int)
Finds PidTagPropertyDescriptor
properties in list
public PidTagPropertyDescriptor[] Find(int id)
Parameter | Type | Description |
---|---|---|
id | Int32 | id to find |
Return Value
PidTagPropertyDescriptor
Array of objects with defined tag if found in the list; otherwise empty array.
See Also
- class PidTagPropertyDescriptor
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email
Find(long)
Finds PidTagPropertyDescriptor
property in list
public PidTagPropertyDescriptor Find(long tag)
Parameter | Type | Description |
---|---|---|
tag | Int64 | Tag to find |
Return Value
PidTagPropertyDescriptor
object with defined tag if found in the list; otherwise null.
See Also
- class PidTagPropertyDescriptor
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email
Find(string, PropertyDataType, Guid)
Finds PidNamePropertyDescriptor
property in list according to required parameters
public PidNamePropertyDescriptor Find(string name, PropertyDataType type, Guid propertySet)
Parameter | Type | Description |
---|---|---|
name | String | Name of a property |
type | PropertyDataType | Data type of a property |
propertySet | Guid | PropertySet of a property |
Return Value
PidNamePropertyDescriptor
object if found in the list; otherwise null.
See Also
- class PidNamePropertyDescriptor
- enum PropertyDataType
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email
Find(string, Guid)
Finds PidNamePropertyDescriptor
property in list according to required parameters This is simplified search operation without data type comparison.
public PidNamePropertyDescriptor Find(string name, Guid propertySet)
Parameter | Type | Description |
---|---|---|
name | String | Name of a property |
propertySet | Guid | PropertySet of a property |
Return Value
PidNamePropertyDescriptor
object if found in the list; otherwise null.
See Also
- class PidNamePropertyDescriptor
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email
Find(long, PropertyDataType, Guid)
Finds PidLidPropertyDescriptor
property in list according to required parameters
public PidLidPropertyDescriptor Find(long lid, PropertyDataType type, Guid propertySet)
Parameter | Type | Description |
---|---|---|
lid | Int64 | Long id of a property |
type | PropertyDataType | Data type of a property |
propertySet | Guid | PropertySet of a property |
Return Value
PidLidPropertyDescriptor
object if found in the list; otherwise null.
See Also
- class PidLidPropertyDescriptor
- enum PropertyDataType
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email
Find(long, Guid)
Finds PidLidPropertyDescriptor
property in list according to required parameters This is simplified search operation without data type comparison.
public PidLidPropertyDescriptor Find(long lid, Guid propertySet)
Parameter | Type | Description |
---|---|---|
lid | Int64 | Long id of a property |
propertySet | Guid | PropertySet of a property |
Return Value
PidLidPropertyDescriptor
object if found in the list; otherwise null.
See Also
- class PidLidPropertyDescriptor
- class KnownPropertyList
- namespace Aspose.Email.Mapi
- assembly Aspose.Email