DslSerializer.TryCreateMonikerInstance Method
This method creates a Moniker of the correct derived (including Dsl itself) instance of Dsl based on the tag currently pointed by the reader.
Namespace: Microsoft.VisualStudio.Modeling.DslDefinition
Assembly: Microsoft.VisualStudio.Modeling.Sdk.DslDefinition.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.DslDefinition.12.0.dll)
Syntax
'Declaration
Public Overrides Function TryCreateMonikerInstance ( _
serializationContext As SerializationContext, _
reader As XmlReader, _
sourceRolePlayer As ModelElement, _
relDomainClassId As Guid, _
partition As Partition _
) As Moniker
public override Moniker TryCreateMonikerInstance(
SerializationContext serializationContext,
XmlReader reader,
ModelElement sourceRolePlayer,
Guid relDomainClassId,
Partition partition
)
public:
virtual Moniker^ TryCreateMonikerInstance(
SerializationContext^ serializationContext,
XmlReader^ reader,
ModelElement^ sourceRolePlayer,
Guid relDomainClassId,
Partition^ partition
) override
abstract TryCreateMonikerInstance :
serializationContext:SerializationContext *
reader:XmlReader *
sourceRolePlayer:ModelElement *
relDomainClassId:Guid *
partition:Partition -> Moniker
override TryCreateMonikerInstance :
serializationContext:SerializationContext *
reader:XmlReader *
sourceRolePlayer:ModelElement *
relDomainClassId:Guid *
partition:Partition -> Moniker
public override function TryCreateMonikerInstance(
serializationContext : SerializationContext,
reader : XmlReader,
sourceRolePlayer : ModelElement,
relDomainClassId : Guid,
partition : Partition
) : Moniker
Parameters
serializationContext
Type: Microsoft.VisualStudio.Modeling.SerializationContextSerialization context.
reader
Type: System.Xml.XmlReaderXmlReader to read serialized data from.
sourceRolePlayer
Type: Microsoft.VisualStudio.Modeling.ModelElementThe source role-player instance from which the moniker being created is referenced.
relDomainClassId
Type: System.GuidThe DomainClass Id of the relationship that connects the sourceRolePlayer to the moniker being created.
partition
Type: Microsoft.VisualStudio.Modeling.PartitionThe new Moniker should be created in the Store associated with this partition.
Return Value
Type: Microsoft.VisualStudio.Modeling.Moniker
Created ModelRoot instance, or null if the reader is not pointing to a correct monikerized instance.
Remarks
The caller will guarantee that the reader is positioned at open XML tag of the next element being read. This method should not move the reader; the reader should remain at the same position when this method returns.
.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.