Microsoft.VisualStudio.GraphModel Namespace

This namespace provides the API to directed graphs.

For more information, see Edit and Customize Dependency Graphs.

Classes

  Class Description
Public class DynamicGraphMetaObject
Public class Graph Represents a directed graph that consists of nodes and links.
Public class GraphCategory Graph Categories are used to specify category information on a GraphObject, like nodes and links.
Public class GraphCategoryChangedEventArgs
Public class GraphCategoryCollection
Public class GraphCommand
Public class GraphCommandDefinition Defines a particular command definition that can be used to group GraphCommands.
Public class GraphCommonSchema Defines a set of commonly used GraphProperty objects.
Public class GraphDataObject This class provides IDataObject support for exchanging DGML data via the clipboard and drag/drop.
Public class GraphDeserializationProgressEventArgs Represents the current progress that the deserializer has made in deserializing the input.
Public class GraphEnumerable Extension methods for graph types.
Public class GraphException An exception that is thrown when a parsing error occurs during a GraphNodeId.Parse
Public class GraphGroup A wrapper on nodes that have IsGroup=true. They do not have a separate identity; they use the identity of the node that they wrap.
Public class GraphLink Represents a link in the directed graph.
Public class GraphLinkCollection Instances of this class manage a collection of Links. Ordering is not preserved.
Public class GraphMetadata This class is used to provide more information about a GraphProperty, including localized strings and flags for controlling how the property appears in a Property Grid window.
Public class GraphMetadataContainer An object that can have graph specific metadata associated with it.
Public class GraphNavigateToItemRanks Common rank values for the IGraphNavigateToItem extension.
Public class GraphNode Represents a node in the directed graph
Public class GraphNodeCollection This class provides methods for manipulating a collection of Nodes. This class does not preserve the order in which you added the nodes, so that when you enumerate them you will get them back in a random order.
Public class GraphNodeId A GraphNodeId is a name/value pair, for example "a=b". The left part of this identifier ("a") is represented by a GraphNodeIdName called the "name" and the right hand side, "b" is the "value" part. The value part of a GraphNodeId can be one of the following: * String * Uri * GraphNodeId * GraphNodeIdCollection. Since the Value can be a GraphNodeId or GraphNodeIdCollection, we can use parentheses "()" to specify nesting: e.g., a=(b=c) a=(b=c d=e) (a=b c=d). To construct a nested GraphNodeId list for (a=b c=d), create a GraphNodeIdCollection and assign it to a GraphNodeId:GraphNodeId.Get(GraphNodeIdName.Nested, new GraphNodeIdCollection( GraphNodeId.Get(MyGraphNodeIdNames.a, "b") GraphNodeId.Get(MyGraphNodeIdNames.c, "d")); You can also create this GraphNodeId by using the following simple arithmetic:GraphNodeId ab = GraphNodeId.Get("(a=b)"); GraphNodeId abcd = ab + "(c=d)"; // Yields (a=b c=d) The result can be converted to a string by using ToString() or an implicit string cast operator and will produce "(a=b c=d)".Since GraphNodeIds are stored singleton in a HashSet, they can be compared using operator ==.
Public class GraphNodeIdCollection Contains a list of GraphNodeIds. This can be stored inside the .Value part of a GraphNodeId. This is an immutable list as soon as it is created. We use an abstract class because this class does not know the formatting required to serialize the list back out to a string. The derived class will know this.
Public class GraphNodeIdConverter A type converter that can be used to convert to and from GraphNodeId. The editor converter derives from this one.
Public class GraphNodeIdName The GraphNodeIdName to give to a GraphNodeId. This forms the name and data type of the GraphNodeId.
Public class GraphNodeIdPropertyDescriptor This is a custom PropertyDescriptor that is used to populate a row in the PropertyGrid with XmlAttribute information and corresponding localized strings for labels and descriptions.
Public class GraphObject This class makes an object extensible by adding a strongly typed property bag of name/value pairs.
Public class GraphObjectChangedEventArgs These event args are used by the GraphNodeCollection and GraphLinkCollection Added and Removed events so that you can track which nodes and links are added and removed from the graph.
Public class GraphPathSerializationDictionary The CommonPaths lets you remap certain attribute values in the DGML. For example, it is nice to have a file path be relative to the solution so the file can be found when that solution is moved. To solve this you can define a path called "SolutionDir" with the value of the full path. Then the GraphSerializer will substitute this path wherever it is found in the DGML with the syntax "$(name)" where name is the Id of the path you provided and it will write out the definition of the paths that are used in a Paths block at the end of the file. When this DGML document is loaded the paths will be substituted with the values in the current CommonPaths and then all the variable references will be expanded with these new values.So a solution folder on your computer might be on drive C someplace, and on drive D on another computer and everything will still just work as expected.
Public class GraphPathSerializer This class re-writes string values by using the path names in the given CommonPaths. It provides a Serialize method that substitutes paths with a $(name) syntax where the name is the name of the path as registered in the CommonPaths. It also provides a Deserialize method that does the reverse. When all Serialization has completed, you can query the Used property to get a list of just the paths that were used by the Serialize or Deserialize methods.
Public class GraphProperty Graph Properties are used to annotate a GraphObject, like nodes and links.
Public class GraphPropertyCollection
Public class GraphProviderAttribute Attribute to indicate that the target type is a graph provider.
Public class GraphSchema A GraphSchema is a simple container of a set of GraphCategory and GraphProperty objects and the GraphMetadata associated with them.
Public class GraphSerializationErrorEventArgs This class is used to communicate serialization errors if the caller passes a handler to the serializer.
Public class GraphSerializationSettings Settings for serializing a graph.
Public class GraphTransactionCanceledException This class can be used to cancel a graph transaction scope and communicate up to the UI layer of your application a reason for the cancelation.
Public class GraphTransactionScope Represents a highly optimized wrapper around System.Transactions.TransactionScope. This extensively uses thread local storage and is therefore thread-bound. GraphTransactionScope is meant to be called from a using() class, same as TransactionScope.
Public class GraphUndoManager<T> This class wraps the IOleUndoManager from Visual Studio and adds undo unit merging.
Public class GraphUndoUnit This class represents one undoable graph change which appears on the VS undo stack.
Public class GraphUpdatedEventArgs Provides changes to a graph object.
Public class UndoableGraphTransactionScope This is a special graph transaction scope that can be used for undoable edits (that appear in the host application undo stack).

Interfaces

  Interface Description
Public interface IGraphContext Interface representing a context which specifies a desired set of data. Providers place the requested data in the provided graph and the output nodes collection.
Public interface IGraphFormattedLabel Interface representing an extension that can provide optional formatted labels for a GraphObject (that is, labels that are not permanently stored with the object).
Public interface IGraphNavigateToItem Interface representing an extension that can navigate to the item represented by a GraphObject.
Public interface IGraphProvider
Public interface IGraphProviderMetadata Metadata that describes a GraphProvider. This data is used to lazily load the provider only when it is necessary.
Public interface IGraphProviderRankableExtension When more than one graph provider supports an extension type on a graph object, only one extension instance has to be chosen to be invoked. This interface represents an extension that can provide its rank and by doing that influence the selection of an extension instance to be invoked. An extension instance with the greatest rank value will be choosen.
Public interface IHasGraphOwner An interface for objects that have an owning Graph object.
Public interface IReadOnlyCollection<T> Simple interface that exposes a Count property over a collection

Enumerations

  Enumeration Description
Public enumeration AggregatorKind Enumeration of the various kinds of aggregation operations for properties set by multiple IGraphProviders.
Public enumeration DelayedDataState Enum for properties representing states of data that can get fetched into the graph in a delayed manner (on-demand or asynchronously).
Public enumeration GraphCategoryChangeType
Public enumeration GraphCategoryMatchOption This enumeration defines options that you have when matching categories.
Public enumeration GraphContextDirection Enumeration of possible GraphContext search directions.
Public enumeration GraphGroupStyle Specifies the display state of an element.
Public enumeration GraphMetadataOptions Bit flags used to control the behavior a GraphProperty.
Public enumeration GraphSearchDirection
Public enumeration GraphSearchOption This enum defines the choices you have when you search the graph
Public enumeration GraphTransactionScopeOptions Options for the GraphTransactionScope.
Public enumeration UndoOption This enum controls how the undoable operation is treated on the undo stack.