| XFileManager.FromStream Method | Language: | 
Creates an XFile object from a data stream.
Visual Basic Public Function FromStream( _ 
ByVal data As Stream, _
ByVal length As Integer _
) As XFileC# public XFile FromStream( 
Stream data,
int length
);C++ public: 
XFile^ FromStream(
Stream^ data,
int length
);JScript public function FromStream( 
data : Stream,
length : int
) : XFile;
data System.IO.Stream 
A Streamthat contains the .x file data.
length System.Int32 
The length of the data stream.
Microsoft.DirectX.Direct3D.XFile
A newly created XFile object.
After using this method, use one of the XFile methods to retrieve a data object.
Exception GraphicsException.ErrorCode Cause GraphicsException XFileErrorCodes.BadValue A variable is outside its expected range; typically returned when an object is invalid. XFileErrorCodes.ParseError Data stream could not be parsed. ArgumentOutOfRangeException N/A Length must be greater than zero. NotSupportedException N/A The stream must support reading. 
Send comments about this topic to Microsoft. © Microsoft Corporation. All rights reserved.
Feedback? Please provide us with your comments on this topic.