Amazon.Internal.RegionEndpointProviderV2.RegionEndpoint.LoadEndpointDefinitionsFromEmbeddedResource C# (CSharp) Méthode

LoadEndpointDefinitionsFromEmbeddedResource() static private méthode

static private LoadEndpointDefinitionsFromEmbeddedResource ( ) : void
Résultat void
            static void LoadEndpointDefinitionsFromEmbeddedResource()
            {
                using (var stream = Amazon.Util.Internal.TypeFactory.GetTypeInfo(typeof(RegionEndpoint)).Assembly.GetManifestResourceStream(REGIONS_FILE))
                {
                    ReadEndpointFile(stream);
                }
                using (var stream = Amazon.Util.Internal.TypeFactory.GetTypeInfo(typeof(RegionEndpoint)).Assembly.GetManifestResourceStream(REGIONS_CUSTOMIZATIONS_FILE))
                {
                    ReadEndpointFile(stream);
                }
            }
#if BCL