NamedStreamCreator Constructor |
Constructor for NamedStreamCreator
Namespace: Bio.IOAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public NamedStreamCreator(
string name,
Func<Stream> creator
)
Public Sub New (
name As String,
creator As Func(Of Stream)
)
public:
NamedStreamCreator(
String^ name,
Func<Stream^>^ creator
)
new :
name : string *
creator : Func<Stream> -> NamedStreamCreator
Parameters
- name
- Type: SystemString
The name of the data source. This might be a file name, a resource name, the name of a text box on a form, etc. This name is mostly used
in error messages when there is an error in the data to help the user understand which data source has the problem. - creator
- Type: SystemFuncStream
A factor that creates a stream.
See Also