Beispiel #1
0
 // Record the ApplicationEndpoint's owner changes to the console.
 static void Endpoint_ApplicationEndpointOwnerPropertiesChanged(object endpoint,
                                                                ApplicationEndpointOwnerPropertiesChangedEventArgs e)
 {
     // When provisioning data for the endpoint changes, the
     // ProvisioningDataChanged event is raised.
     Console.WriteLine("ApplicationEndpoint's owner properties have changed");
     Console.WriteLine("The set of changed properties for the provisioned application are: ");
     foreach (var property in e.ChangedPropertyNames)
     {
         Console.WriteLine(property);
     }
 }
Beispiel #2
0
 // Record the ApplicationEndpoint's owner changes to the console.
 static void Endpoint_ApplicationEndpointOwnerPropertiesChanged(object endpoint, 
     ApplicationEndpointOwnerPropertiesChangedEventArgs e)
 {
     // When provisioning data for the endpoint changes, the
     // ProvisioningDataChanged event is raised.
     Console.WriteLine("ApplicationEndpoint's owner properties have changed");
     Console.WriteLine("The set of changed properties for the provisioned application are: ");
     foreach (var property in e.ChangedPropertyNames)
     {
         Console.WriteLine(property);
     }
 }