SchemaCompareExcludedElement.TryParseExcludedElement Method
Attempts to parse each of the provided model elements and returns a value that indicates whether all the elements could be parsed. It also returns a list of the parsed elements in the output parameter.
Namespace: Microsoft.Data.Schema.Tools.Compare.Schema
Assembly: Microsoft.Data.Schema.Tools (in Microsoft.Data.Schema.Tools.dll)
Syntax
'Declaration
Public Overridable Function TryParseExcludedElement ( _
model As DataSchemaModel, _
<OutAttribute> ByRef modelElements As IList(Of IModelElement) _
) As Boolean
public virtual bool TryParseExcludedElement(
DataSchemaModel model,
out IList<IModelElement> modelElements
)
public:
virtual bool TryParseExcludedElement(
DataSchemaModel^ model,
[OutAttribute] IList<IModelElement^>^% modelElements
)
abstract TryParseExcludedElement :
model:DataSchemaModel *
modelElements:IList<IModelElement> byref -> bool
override TryParseExcludedElement :
model:DataSchemaModel *
modelElements:IList<IModelElement> byref -> bool
public function TryParseExcludedElement(
model : DataSchemaModel,
modelElements : IList<IModelElement>
) : boolean
Parameters
- model
Type: Microsoft.Data.Schema.SchemaModel.DataSchemaModel
A DataSchemaModel that represents the current data model.
- modelElements
Type: System.Collections.Generic.IList<IModelElement>%
(Output) An IList<T> that contains the parsed IModelElement objects.
Return Value
Type: System.Boolean
true if all the elements are successfully parsed; otherwise, false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
SchemaCompareExcludedElement Class