Imported Upstream version 1.34.0
[platform/upstream/grpc.git] / examples / csharp / HelloworldXamarin / HelloworldXamarin / App.xaml.cs
1 #region Copyright notice and license
2 // Copyright 2020 The gRPC Authors
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 #endregion
16
17 using System;
18 using Xamarin.Forms;
19 using Xamarin.Forms.Xaml;
20
21 namespace HelloworldXamarin
22 {
23     public partial class App : Application
24     {
25         public App()
26         {
27             InitializeComponent();
28
29             MainPage = new MainPage();
30         }
31
32         protected override void OnStart()
33         {
34         }
35
36         protected override void OnSleep()
37         {
38         }
39
40         protected override void OnResume()
41         {
42         }
43     }
44 }