XmlSerializationWriter::FromEnum Method (Int64, array<String^>^, array<Int64>^, String^)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Takes a numeric enumeration value and the names and constants from the enumerator list for the enumeration and returns a string that consists of delimited identifiers that represent the enumeration members that have been set.

Namespace:   System.Xml.Serialization
Assembly:  System.Xml (in System.Xml.dll)

protected:
static String^ FromEnum(
	long long value,
	array<String^>^ values,
	array<long long>^ ids,
	String^ typeName
)

Parameters

value
Type: System::Int64

The enumeration value as a series of bitwise OR operations.

values
Type: array<System::String^>^

The values of the enumeration.

ids
Type: array<System::Int64>^

The constants of the enumeration.

typeName
Type: System::String^

The name of the type

Return Value

Type: System::String^

A string that consists of delimited identifiers, where each item is one of the values set by the bitwise operation.

The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Return to top
Show: