Amazon.Internal.RegionEndpointProviderV2.RegionEndpoint.LoadEndpointDefinitionsFromEmbeddedResource C# (CSharp) Method

LoadEndpointDefinitionsFromEmbeddedResource() static private method

static private LoadEndpointDefinitionsFromEmbeddedResource ( ) : void
return 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