Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Calculates the intersection of two normalized snapshot span collections and normalizes the result.
Namespace: Microsoft.VisualStudio.Text
Assembly: Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)
Syntax
'Declaration
Public Shared Function Intersection ( _
left As NormalizedSnapshotSpanCollection, _
right As NormalizedSnapshotSpanCollection _
) As NormalizedSnapshotSpanCollection
public static NormalizedSnapshotSpanCollection Intersection(
NormalizedSnapshotSpanCollection left,
NormalizedSnapshotSpanCollection right
)
public:
static NormalizedSnapshotSpanCollection^ Intersection(
NormalizedSnapshotSpanCollection^ left,
NormalizedSnapshotSpanCollection^ right
)
static member Intersection :
left:NormalizedSnapshotSpanCollection *
right:NormalizedSnapshotSpanCollection -> NormalizedSnapshotSpanCollection
public static function Intersection(
left : NormalizedSnapshotSpanCollection,
right : NormalizedSnapshotSpanCollection
) : NormalizedSnapshotSpanCollection
Parameters
left
Type: Microsoft.VisualStudio.Text.NormalizedSnapshotSpanCollectionThe first NormalizedSnapshotSpanCollection.
right
Type: Microsoft.VisualStudio.Text.NormalizedSnapshotSpanCollectionThe second NormalizedSnapshotSpanCollection.
Return Value
Type: Microsoft.VisualStudio.Text.NormalizedSnapshotSpanCollection
The normalized set of intersecting spans.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | left or right is nulla null reference (Nothing in Visual Basic). |
ArgumentException | The collections refer to different snapshots. |
.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.