Independentsoft
- any library, any programming language
Home
Purchase
Support
Company
Contact
Graph .NET
>
Tutorial
> List all teams
List all teams in an organization.
C# example
using System; using System.Threading.Tasks; using System.Collections.Generic; using Independentsoft.Graph; using Independentsoft.Graph.Teams; namespace ConsoleApp1 { class Program { static async Task Main() { try { GraphClient client = new GraphClient(); client.ClientId = "63333333-209e-454e-b7bd-55a4d201270f"; client.Tenant = "independentsoft.onmicrosoft.com"; client.ClientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; GetTeamsResponse response = await client.GetTeams(); while(true) { foreach (Team team in response.Teams) { Console.WriteLine("Team Id: " + team.Id); Console.WriteLine("Team DisplayName: " + team.DisplayName); Console.WriteLine("---------------------------------------------"); } if(response.NextLink != null) { response = await client.GetTeams(response.NextLink); } else { break; } } Console.Read(); } catch (GraphException ex) { Console.WriteLine("Error: " + ex.Code); Console.WriteLine("Message: " + ex.Message); Console.Read(); } } } }
VB example
Imports System Imports System.Threading.Tasks Imports Independentsoft.Graph Imports Independentsoft.Graph.Teams Namespace Sample Class Module1 Shared Sub Main(ByVal args As String()) Dim task = New Task(AddressOf Run) ' Start and wait for task to end. task.Start() Console.Read() End Sub Shared Async Sub Run() Try Dim client As GraphClient = New GraphClient() client.ClientId = "63333333-209e-454e-b7bd-55a4d201270f" client.Tenant = "independentsoft.onmicrosoft.com" client.ClientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" Dim response As GetTeamsResponse = Await client.GetTeams() While True For Each team As Team In response.Teams Console.WriteLine("Team Id: " & team.Id) Console.WriteLine("Team DisplayName: " & team.DisplayName) Console.WriteLine("---------------------------------------------") Next If response.NextLink IsNot Nothing Then response = Await client.GetTeams(response.NextLink) Else Exit While End If End While Console.Read() Catch ex As GraphException Console.WriteLine("Error: " + ex.Code) Console.WriteLine("Error: " + ex.Message) Console.Read() End Try End Sub End Class End Namespace
Need help? Ask our developers:
Name*
Email*
Message*