IMapServiceSerializeEsriMap Method (Stream, Stream, Stream, String, Stream, ICollectionString) | 
 Serializes ESRI map files.
 
    Namespace: 
   Dundas.BI.Utility.Map
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxvoid SerializeEsriMap(
	Stream shapeFileStream,
	Stream shxFileStream,
	Stream dbfFileStream,
	string mapName,
	Stream outputStream,
	out ICollection<string> tags
)
Sub SerializeEsriMap ( 
	shapeFileStream As Stream,
	shxFileStream As Stream,
	dbfFileStream As Stream,
	mapName As String,
	outputStream As Stream,
	<OutAttribute> ByRef tags As ICollection(Of String)
)
void SerializeEsriMap(
	Stream^ shapeFileStream, 
	Stream^ shxFileStream, 
	Stream^ dbfFileStream, 
	String^ mapName, 
	Stream^ outputStream, 
	[OutAttribute] ICollection<String^>^% tags
)
abstract SerializeEsriMap : 
        shapeFileStream : Stream * 
        shxFileStream : Stream * 
        dbfFileStream : Stream * 
        mapName : string * 
        outputStream : Stream * 
        tags : ICollection<string> byref -> unit 
Parameters
- shapeFileStream
 - Type: System.IOStream
The stream used to read the SHP file. - shxFileStream
 - Type: System.IOStream
The stream used to read the SHX file. - dbfFileStream
 - Type: System.IOStream
The stream used to read the DBF file. - mapName
 - Type: SystemString
The name of the map that is being imported. - outputStream
 - Type: System.IOStream
The stream to which the map is to be serialized. - tags
 - Type: System.Collections.GenericICollectionString
Tags that resulted from processing the DBF file. 
Exceptions
See Also