|
virtual INT64 MgReader::GetInt64 |
( |
CREFSTRING |
propertyName |
) |
[pure virtual] |
Gets the 64 bit integer value of the specified property.
- Remarks:
- No conversion is performed. Therefore, the property must be a of type MgPropertyType::Int64 or an MgInvalidPropertyTypeException is thrown.
.NET Syntax
virtual long GetInt64(string propertyName);
|
Java Syntax
virtual long GetInt64(String propertyName);
|
PHP Syntax
virtual string GetInt64(string propertyName);
|
- Parameters:
-
| propertyName | (String/string) The property name. |
- Returns:
- Returns the integer 64 bits value.
- Exceptions:
-
| MgInvalidPropertyTypeException. | |
- Note:
- INT64 is actually a pointer to an Integer64 object
|